diff options
author | Geoffrey Keating <geoffk@geoffk.org> | 2000-12-12 20:15:21 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@geoffk.org> | 2000-12-12 20:15:21 +0000 |
commit | 9a8e2505e8462bab727be5f1e33e5c95a4a3f918 (patch) | |
tree | 340ff121154f43f61a98213957a729fe1c26b70f /ld/emulparams | |
parent | 5d6f4f16793f8c4ac42ff7524daf1035d2980e4e (diff) | |
download | gdb-9a8e2505e8462bab727be5f1e33e5c95a4a3f918.zip gdb-9a8e2505e8462bab727be5f1e33e5c95a4a3f918.tar.gz gdb-9a8e2505e8462bab727be5f1e33e5c95a4a3f918.tar.bz2 |
* emulparams/elf32ppc.sh (OTHER_READWRITE_SECTIONS):
.fixup is actually read/write.
* emulparams/elf32lppc.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf32ppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
* emulparams/elf32lppcsim.sh (OTHER_READWRITE_SECTIONS): Likewise.
Diffstat (limited to 'ld/emulparams')
-rw-r--r-- | ld/emulparams/elf32lppc.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf32lppcsim.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf32ppc.sh | 4 | ||||
-rw-r--r-- | ld/emulparams/elf32ppcsim.sh | 4 |
4 files changed, 4 insertions, 12 deletions
diff --git a/ld/emulparams/elf32lppc.sh b/ld/emulparams/elf32lppc.sh index e8d5270..bc9125d 100644 --- a/ld/emulparams/elf32lppc.sh +++ b/ld/emulparams/elf32lppc.sh @@ -11,10 +11,8 @@ MACHINE= BSS_PLT= EXECUTABLE_SYMBOLS='PROVIDE (__stack = 0); PROVIDE (___stack = 0);' OTHER_BSS_END_SYMBOLS='__end = .;' -OTHER_READONLY_SECTIONS=' - .fixup : { *(.fixup) } -' OTHER_READWRITE_SECTIONS=' + .fixup : { *(.fixup) } .got1 : { *(.got1) } .got2 : { *(.got2) } ' diff --git a/ld/emulparams/elf32lppcsim.sh b/ld/emulparams/elf32lppcsim.sh index 8ecf11712..74959f8 100644 --- a/ld/emulparams/elf32lppcsim.sh +++ b/ld/emulparams/elf32lppcsim.sh @@ -11,10 +11,8 @@ MACHINE= BSS_PLT= EXECUTABLE_SYMBOLS='PROVIDE (__stack = 0); PROVIDE (___stack = 0);' OTHER_BSS_END_SYMBOLS='__end = .;' -OTHER_READONLY_SECTIONS=' - .fixup : { *(.fixup) } -' OTHER_READWRITE_SECTIONS=' + .fixup : { *(.fixup) } .got1 : { *(.got1) } .got2 : { *(.got2) } ' diff --git a/ld/emulparams/elf32ppc.sh b/ld/emulparams/elf32ppc.sh index 049c1d2..2220810 100644 --- a/ld/emulparams/elf32ppc.sh +++ b/ld/emulparams/elf32ppc.sh @@ -11,10 +11,8 @@ MACHINE= BSS_PLT= EXECUTABLE_SYMBOLS='PROVIDE (__stack = 0); PROVIDE (___stack = 0);' OTHER_BSS_END_SYMBOLS='__end = .;' -OTHER_READONLY_SECTIONS=' - .fixup : { *(.fixup) } -' OTHER_READWRITE_SECTIONS=' + .fixup : { *(.fixup) } .got1 : { *(.got1) } .got2 : { *(.got2) } ' diff --git a/ld/emulparams/elf32ppcsim.sh b/ld/emulparams/elf32ppcsim.sh index 28f5840..e25a170 100644 --- a/ld/emulparams/elf32ppcsim.sh +++ b/ld/emulparams/elf32ppcsim.sh @@ -11,10 +11,8 @@ MACHINE= BSS_PLT= EXECUTABLE_SYMBOLS='PROVIDE (__stack = 0); PROVIDE (___stack = 0);' OTHER_BSS_END_SYMBOLS='__end = .;' -OTHER_READONLY_SECTIONS=' - .fixup : { *(.fixup) } -' OTHER_READWRITE_SECTIONS=' + .fixup : { *(.fixup) } .got1 : { *(.got1) } .got2 : { *(.got2) } ' |