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:
Károly Balogh 2017-12-30 06:51:32 +00:00
parent 05642cd495
commit 4c0e6980db

View File

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