diff options
author | Timothy Wall <twall@alum.mit.edu> | 2001-02-27 03:23:00 +0000 |
---|---|---|
committer | Timothy Wall <twall@alum.mit.edu> | 2001-02-27 03:23:00 +0000 |
commit | 2bc551c701a8e359ab162f55808a29773d52f0e1 (patch) | |
tree | 67bb6d51a1137b12552da409e2308763845b90ac /ld | |
parent | 1af96959a194b1be6abfec4fa0f08328316cca79 (diff) | |
download | gdb-2bc551c701a8e359ab162f55808a29773d52f0e1.zip gdb-2bc551c701a8e359ab162f55808a29773d52f0e1.tar.gz gdb-2bc551c701a8e359ab162f55808a29773d52f0e1.tar.bz2 |
Add aix5 settings.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emulparams/elf64_aix.sh | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 78f0803..e816de7 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-02-26 Timothy Wall <twall@cygnus.com> + + * emulparams/elf64_aix.sh: Add additional read-only sections; + uncomment lines which are now required. + 2001-02-26 H.J. Lu <hjl@gnu.org> * ldlang.c (open_input_bfds): Set the bfd error handler so diff --git a/ld/emulparams/elf64_aix.sh b/ld/emulparams/elf64_aix.sh index 8376df2..c0e73a9 100644 --- a/ld/emulparams/elf64_aix.sh +++ b/ld/emulparams/elf64_aix.sh @@ -10,8 +10,8 @@ TEXT_START_ADDR="0x100000000" DATA_ADDR="0x200000000 + (. & (${MAXPAGESIZE} - 1))" GENERATE_SHLIB_SCRIPT=yes NOP=0x00300000010070000002000001000400 # a bundle full of nops -#OTHER_GOT_SYMBOLS='. = ALIGN (8); PROVIDE (__gp = . + 0x200000);' +OTHER_GOT_SYMBOLS='. = ALIGN (8); PROVIDE (__gp = . + 0x200000);' OTHER_GOT_SECTIONS='.IA_64.pltoff : { *(.IA_64.pltoff) }' OTHER_PLT_RELOC_SECTIONS='.rela.IA_64.pltoff : { *(.rela.IA_64.pltoff) }' -OTHER_READONLY_SECTIONS='.opd : { *(.opd) }' -#LIB_PATH=/usr/lib/ia64l64:/usr/lib:/usr/local/lib +OTHER_READONLY_SECTIONS='.opd : { *(.opd) } .IA_64.unwind_info : { *(.IA_64.unwind_info*) } .IA_64.unwind : { *(.IA_64.unwind*) }' +LIB_PATH=/usr/lib/ia64l64:/usr/lib:/usr/local/lib |