mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 13:29:19 +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:
|
sec_data, sec_rodata:
|
||||||
result:='adrw';
|
result:='adrw';
|
||||||
sec_rodata_norel:
|
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:
|
sec_bss, sec_threadvar:
|
||||||
result:='aurw';
|
result:='aurw';
|
||||||
sec_stab, sec_stabstr:
|
sec_stab, sec_stabstr:
|
||||||
|
Loading…
Reference in New Issue
Block a user