diff options
Diffstat (limited to 'ld')
-rw-r--r-- | ld/ChangeLog | 5 | ||||
-rw-r--r-- | ld/emulparams/elf64_aix.sh | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/ld/ChangeLog b/ld/ChangeLog index 53c4d9f..d047676 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2001-05-25 Timothy Wall <twall@oculustech.com> + + * emulparams/elf64_aix.sh: Change settings to match IBM linker + output. + 2001-05-25 Alan Modra <amodra@one.net.au> * configure.host: Replace linuxoldld with linux*oldld. diff --git a/ld/emulparams/elf64_aix.sh b/ld/emulparams/elf64_aix.sh index 057949b..af6b63a 100644 --- a/ld/emulparams/elf64_aix.sh +++ b/ld/emulparams/elf64_aix.sh @@ -5,12 +5,11 @@ TEMPLATE_NAME=elf32 OUTPUT_FORMAT="elf64-ia64-aix-little" ARCH=ia64 MACHINE= -MAXPAGESIZE=0x1000 -TEXT_START_ADDR="0x100000000" -DATA_ADDR="0x200000000 + (. & (${MAXPAGESIZE} - 1))" +MAXPAGESIZE=0x10000 +TEXT_START_ADDR="0x10000000" +DATA_ADDR="0x20000000 + (. & (${MAXPAGESIZE} - 1))" GENERATE_SHLIB_SCRIPT=yes NOP=0x00300000010070000002000001000400 # a bundle full of nops -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) } .IA_64.unwind_info : { *(.IA_64.unwind_info*) *(.gnu.linkonce.ia64unwi.*) } .IA_64.unwind : { *(.IA_64.unwind*) *(.gnu.linkonce.ia64unw.*) }' |