diff options
author | Daniel Jacobowitz <drow@false.org> | 2003-10-09 14:06:07 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2003-10-09 14:06:07 +0000 |
commit | 2f857bd0cccb09a878d0aa762c965dd0bd942806 (patch) | |
tree | 91098f7b3df91c8cde9617dba05b31a2b0ee963d /ld/emulparams | |
parent | ff8755a0e5ee7227b64d14804860cd9d9f35aaa3 (diff) | |
download | gdb-2f857bd0cccb09a878d0aa762c965dd0bd942806.zip gdb-2f857bd0cccb09a878d0aa762c965dd0bd942806.tar.gz gdb-2f857bd0cccb09a878d0aa762c965dd0bd942806.tar.bz2 |
* emulparams/armelf.sh: Define NO_SMALL_DATA.
* emulparams/armelf_linux.sh, emulparams/armelf_oabi.sh,
emulparams/armnto.sh: Likewise.
Diffstat (limited to 'ld/emulparams')
-rw-r--r-- | ld/emulparams/armelf.sh | 3 | ||||
-rw-r--r-- | ld/emulparams/armelf_linux.sh | 3 | ||||
-rw-r--r-- | ld/emulparams/armelf_oabi.sh | 3 | ||||
-rw-r--r-- | ld/emulparams/armnto.sh | 3 |
4 files changed, 12 insertions, 0 deletions
diff --git a/ld/emulparams/armelf.sh b/ld/emulparams/armelf.sh index 9e2ada7..71e3059 100644 --- a/ld/emulparams/armelf.sh +++ b/ld/emulparams/armelf.sh @@ -23,3 +23,6 @@ EMBEDDED=yes # This sets the stack to the top of the simulator memory (2^19 bytes). STACK_ADDR=0x80000 + +# ARM does not support .s* sections. +NO_SMALL_DATA=yes diff --git a/ld/emulparams/armelf_linux.sh b/ld/emulparams/armelf_linux.sh index f03fb76..248b708 100644 --- a/ld/emulparams/armelf_linux.sh +++ b/ld/emulparams/armelf_linux.sh @@ -15,3 +15,6 @@ OTHER_BSS_SYMBOLS='__bss_start__ = .;' OTHER_BSS_END_SYMBOLS='_bss_end__ = . ; __bss_end__ = . ; __end__ = . ;' TEXT_START_ADDR=0x00008000 + +# ARM does not support .s* sections. +NO_SMALL_DATA=yes diff --git a/ld/emulparams/armelf_oabi.sh b/ld/emulparams/armelf_oabi.sh index f1c967d..0c2c1d3 100644 --- a/ld/emulparams/armelf_oabi.sh +++ b/ld/emulparams/armelf_oabi.sh @@ -18,3 +18,6 @@ EMBEDDED=yes # This sets the stack to the top of the simulator memory (2^19 bytes). STACK_ADDR=0x80000 + +# ARM does not support .s* sections. +NO_SMALL_DATA=yes diff --git a/ld/emulparams/armnto.sh b/ld/emulparams/armnto.sh index d000de3..7e4644b 100644 --- a/ld/emulparams/armnto.sh +++ b/ld/emulparams/armnto.sh @@ -22,3 +22,6 @@ ENTRY=_start # This sets the stack to the top of the simulator memory (2^19 bytes). STACK_ADDR=0x80000 + +# ARM does not support .s* sections. +NO_SMALL_DATA=yes |