+ add "-arch ppc" to the assembler call to fix assembling when

running on x86

git-svn-id: trunk@2590 -
This commit is contained in:
Jonas Maebe 2006-02-15 11:00:09 +00:00
parent 8808faf5c0
commit 21e604c1ea

View File

@ -83,13 +83,13 @@ unit agppcgas;
);
as_ppc_gas_darwin_info : tasminfo =
as_ppc_gas_darwin_powerpc_info : tasminfo =
(
id : as_darwin;
idtxt : 'AS-Darwin';
asmbin : 'as';
asmcmd : '-o $OBJ $ASM';
asmcmd : '-o $OBJ $ASM -arch ppc';
supported_target : system_any;
flags : [af_allowdirect,af_needar,af_smartlink_sections,af_supports_dwarf];
labelprefix : 'L';
@ -381,5 +381,5 @@ unit agppcgas;
begin
RegisterAssembler(as_ppc_gas_info,TPPCGNUAssembler);
RegisterAssembler(as_ppc_gas_darwin_info,TPPCGNUAssembler);
RegisterAssembler(as_ppc_gas_darwin_powerpc_info,TPPCGNUAssembler);
end.