mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 18:07:56 +02:00
m68k: always use ELF objects with vasm for improved cross-compatibility with other tools and compilers
git-svn-id: trunk@49210 -
This commit is contained in:
parent
b64d1f9dfd
commit
665180a579
@ -96,12 +96,11 @@ unit ag68kvasm;
|
||||
result:=asminfo^.asmcmd;
|
||||
|
||||
case target_info.system of
|
||||
{ a.out doesn't support named sections }
|
||||
system_m68k_amiga: objtype:='-Felf';
|
||||
{ atari never had a standard object format, a.out is limited, vasm/vlink author recommends vobj }
|
||||
{ a.out doesn't support named sections, a.out is limited
|
||||
(no named sections) lets use ELF for interoperability }
|
||||
system_m68k_amiga,
|
||||
system_m68k_atari,
|
||||
{ same with the QL }
|
||||
system_m68k_sinclairql: objtype:='-Fvobj';
|
||||
system_m68k_sinclairql: objtype:='-Felf';
|
||||
else
|
||||
internalerror(2016052601);
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user