mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 13:29:27 +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
65bbb09f4b
commit
2f04564773
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user