diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-10-26 18:12:41 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-10-26 18:12:41 +0000 |
commit | 328e5a48e87d75e0d0b63669c533025da6242a5e (patch) | |
tree | 422de85d8c61319567a876e6d43a8140fe64270f /ld/scripttempl | |
parent | e89929cd799f56b70a7626a693d0956568fb3147 (diff) | |
download | gdb-328e5a48e87d75e0d0b63669c533025da6242a5e.zip gdb-328e5a48e87d75e0d0b63669c533025da6242a5e.tar.gz gdb-328e5a48e87d75e0d0b63669c533025da6242a5e.tar.bz2 |
* scripttempl/aix.sc: Move special symbols inside sections.
Always start .data at 0.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/aix.sc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/ld/scripttempl/aix.sc b/ld/scripttempl/aix.sc index 74fdeeed..ec67ee1 100644 --- a/ld/scripttempl/aix.sc +++ b/ld/scripttempl/aix.sc @@ -10,8 +10,8 @@ ENTRY(__start) SECTIONS { .pad 0 : { *(.pad) } - ${RELOCATING+PROVIDE (_text = .);} .text ${RELOCATING-0} : { + ${RELOCATING+PROVIDE (_text = .);} *(.text) *(.pr) *(.ro) @@ -20,10 +20,10 @@ SECTIONS *(.xo) *(.ti) *(.tb) + ${RELOCATING+PROVIDE (_etext = .);} } - ${RELOCATING+PROVIDE (_etext = .);} - ${RELOCATING+PROVIDE (_data = .);} - .data ${RELOCATING-0} : { + .data 0 : { + ${RELOCATING+PROVIDE (_data = .);} *(.data) *(.rw) *(.sv) @@ -32,16 +32,16 @@ SECTIONS *(.tc0) *(.tc) *(.td) + ${RELOCATING+PROVIDE (_edata = .);} } - ${RELOCATING+PROVIDE (_edata = .);} .bss : { *(.bss) *(.bs) *(.uc) *(COMMON) + ${RELOCATING+PROVIDE (_end = .);} + ${RELOCATING+PROVIDE (end = .);} } - ${RELOCATING+PROVIDE (_end = .);} - ${RELOCATING+PROVIDE (end = .);} .loader 0 : { *(.loader) } |