mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 18:09:30 +02:00
* use .rodata directive on arm
git-svn-id: trunk@3632 -
This commit is contained in:
parent
783b91ba1e
commit
3a03aee386
@ -235,8 +235,13 @@ implementation
|
||||
secnames : array[TAsmSectiontype] of string[17] = ('',
|
||||
'.text',
|
||||
'.data',
|
||||
{ why doesn't .rodata work? (FK) }
|
||||
{$warning TODO .rodata not yet working}
|
||||
{$ifdef arm}
|
||||
'.rodata',
|
||||
{$else arm}
|
||||
'.data',
|
||||
{$endif arm}
|
||||
'.bss',
|
||||
'.threadvar',
|
||||
'', { stubs }
|
||||
|
Loading…
Reference in New Issue
Block a user