Elf2Mac: --mac-single option for generating single-segment apps

This commit is contained in:
Wolfgang Thaller 2017-09-29 22:17:50 +02:00
parent 04174d1b55
commit bf6728b156
1 changed files with 6 additions and 0 deletions

View File

@ -124,6 +124,12 @@ int main(int argc, char *argv[])
flatoutput = true;
segments = false;
}
else if(*p == "--mac-single")
{
elf2mac = true;
flatoutput = false;
segments = false;
}
else if(*p == "--mac-segments")
{
elf2mac = true;