- reverted r36870, Darwin's assembler uses a different way to specify

32/64 bit (like it was before; fixes mantis #32954)

git-svn-id: trunk@37914 -
This commit is contained in:
Jonas Maebe 2018-01-05 19:48:19 +00:00
parent b00143005c
commit f1ace2b74d

View File

@ -436,7 +436,7 @@ interface
id : as_darwin;
idtxt : 'AS-DARWIN';
asmbin : 'as';
asmcmd : '--64 -o $OBJ $EXTRAOPT $ASM';
asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch x86_64';
supported_targets : [system_x86_64_darwin,system_x86_64_iphonesim];
flags : [af_needar,af_smartlink_sections,af_supports_dwarf];
labelprefix : 'L';
@ -510,7 +510,7 @@ interface
id : as_darwin;
idtxt : 'AS-DARWIN';
asmbin : 'as';
asmcmd : '--32 -o $OBJ $EXTRAOPT $ASM';
asmcmd : '-o $OBJ $EXTRAOPT $ASM -arch i386';
supported_targets : [system_i386_darwin,system_i386_iphonesim];
flags : [af_needar,af_smartlink_sections,af_supports_dwarf,af_stabs_use_function_absolute_addresses];
labelprefix : 'L';