From 996ab2feba4407d20b087817aae89dbb13a659b5 Mon Sep 17 00:00:00 2001 From: nickysn Date: Tue, 2 Jun 2020 22:44:57 +0000 Subject: [PATCH] * renamed some REL sections to follow a similar naming convention git-svn-id: trunk@45566 - --- compiler/ogrel.pas | 8 ++++---- compiler/systems/t_zxspectrum.pas | 6 +++--- compiler/z80/agsdasz80.pas | 8 ++++---- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/compiler/ogrel.pas b/compiler/ogrel.pas index 3009b774ad..59bf17c268 100644 --- a/compiler/ogrel.pas +++ b/compiler/ogrel.pas @@ -253,8 +253,8 @@ implementation '_CODE', '_DATA', '_DATA', - '.rodata', - '.bss', + '_DATA', + '_BSS', '.threadvar', '.pdata', '', { stubs } @@ -305,8 +305,8 @@ implementation '.objc_catlist', '.obcj_nlcatlist', '.objc_protolist', - '.stack', - '.heap', + '_STACK', + '_HEAP', '.gcc_except_table', '.ARM.attributes' ); diff --git a/compiler/systems/t_zxspectrum.pas b/compiler/systems/t_zxspectrum.pas index 65c9ded5c4..cdbd8e7ee4 100644 --- a/compiler/systems/t_zxspectrum.pas +++ b/compiler/systems/t_zxspectrum.pas @@ -367,9 +367,9 @@ procedure TInternalLinkerZXSpectrum.DefaultLinkScript; LinkScript.Concat(' OBJSECTION _DATA'); LinkScript.Concat('ENDEXESECTION'); LinkScript.Concat('EXESECTION .bss'); - LinkScript.Concat(' OBJSECTION .bss'); - LinkScript.Concat(' OBJSECTION .heap'); - LinkScript.Concat(' OBJSECTION .stack'); + LinkScript.Concat(' OBJSECTION _BSS'); + LinkScript.Concat(' OBJSECTION _HEAP'); + LinkScript.Concat(' OBJSECTION _STACK'); LinkScript.Concat('ENDEXESECTION'); LinkScript.Concat('ENTRYNAME start'); diff --git a/compiler/z80/agsdasz80.pas b/compiler/z80/agsdasz80.pas index ef0825dcd1..32e21997cc 100644 --- a/compiler/z80/agsdasz80.pas +++ b/compiler/z80/agsdasz80.pas @@ -252,8 +252,8 @@ unit agsdasz80; '_CODE', '_DATA', '_DATA', - '.rodata', - '.bss', + '_DATA', + '_BSS', '.threadvar', '.pdata', '', { stubs } @@ -304,8 +304,8 @@ unit agsdasz80; '.objc_catlist', '.obcj_nlcatlist', '.objc_protolist', - '.stack', - '.heap', + '_STACK', + '_HEAP', '.gcc_except_table', '.ARM.attributes' );