diff options
author | Jeff Law <law@redhat.com> | 1994-11-16 17:06:20 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-11-16 17:06:20 +0000 |
commit | 831d7ac47c3cbcfb7dd635a18b3dfeaa58a0706d (patch) | |
tree | 247b6eeddc0ed68a3c9e767d117be4eef5947e29 /ld/scripttempl | |
parent | f32fc5f9790cdab127622f3a3f3bdc2474fe9da5 (diff) | |
download | gdb-831d7ac47c3cbcfb7dd635a18b3dfeaa58a0706d.zip gdb-831d7ac47c3cbcfb7dd635a18b3dfeaa58a0706d.tar.gz gdb-831d7ac47c3cbcfb7dd635a18b3dfeaa58a0706d.tar.bz2 |
* scripttempl/hppaelf.sc (.text): Place unwind descriptors in the
text segment.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/hppaelf.sc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ld/scripttempl/hppaelf.sc b/ld/scripttempl/hppaelf.sc index 21b6085..53a55e5 100644 --- a/ld/scripttempl/hppaelf.sc +++ b/ld/scripttempl/hppaelf.sc @@ -3,7 +3,6 @@ OUTPUT_FORMAT("${OUTPUT_FORMAT}") OUTPUT_ARCH(${ARCH}) ENTRY("\$START\$") ${RELOCATING+${LIB_SEARCH_DIRS}} -${RELOCATING+___stack_zero = ABSOLUTE(0x2000);} SECTIONS { .text ${RELOCATING+${TEXT_START_ADDR}}: @@ -12,10 +11,11 @@ SECTIONS CREATE_OBJECT_SYMBOLS *(.PARISC.stubs) *(.text) + *(.PARISC.unwind) ${RELOCATING+etext = .}; ${RELOCATING+_etext = .}; } - .data ${RELOCATING+ 0x40000000 } : + .data 0x40000000 : { ${RELOCATING+ . = . + 0x1000 }; ${RELOCATING+__data_start = .}; @@ -24,7 +24,7 @@ SECTIONS ${RELOCATING+edata = .}; ${RELOCATING+_edata = .}; } - .bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} : + .bss 0x40000000 ${RELOCATING++SIZEOF(.data)} : { *(.bss) *(COMMON) |