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:
Károly Balogh 2021-04-16 11:42:04 +00:00
parent b64d1f9dfd
commit 665180a579

View File

@ -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;