mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:29:32 +02:00
atari: workaround/silence of a vlink warning, when it merges ro sections into rw ones. there are no ro sections on atari anyway
git-svn-id: trunk@37878 -
This commit is contained in:
parent
05642cd495
commit
4c0e6980db
@ -73,7 +73,12 @@ unit ag68kvasm;
|
||||
sec_data, sec_rodata:
|
||||
result:='adrw';
|
||||
sec_rodata_norel:
|
||||
result:='adr';
|
||||
case target_info.system of
|
||||
{ stop vlink from complaining when it merges ro sections into rw ones (KB) }
|
||||
system_m68k_atari: result:='adrw';
|
||||
else
|
||||
result:='adr';
|
||||
end;
|
||||
sec_bss, sec_threadvar:
|
||||
result:='aurw';
|
||||
sec_stab, sec_stabstr:
|
||||
|
Loading…
Reference in New Issue
Block a user