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 committed by Karoly Balogh
parent 65bbb09f4b
commit 2f04564773

View File

@ -95,10 +95,10 @@ 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 }
system_m68k_atari: objtype:='-Fvobj';
{ 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: objtype:='-Felf';
else
internalerror(2016052601);
end;