mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-16 00:09:17 +02:00
+ add "-arch ppc" to the assembler call to fix assembling when
running on x86 git-svn-id: trunk@2590 -
This commit is contained in:
parent
8808faf5c0
commit
21e604c1ea
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user