diff options
author | Catherine Moore <clm@redhat.com> | 1998-08-12 00:11:13 +0000 |
---|---|---|
committer | Catherine Moore <clm@redhat.com> | 1998-08-12 00:11:13 +0000 |
commit | b3bd5b15117f18a12f3db3e6752d965df081c8fe (patch) | |
tree | e12916f6d19fb4b671d4baab1de922f7c649ce74 /ld/scripttempl | |
parent | a17e14c15062a30e55f9882137580959e2f549b5 (diff) | |
download | gdb-b3bd5b15117f18a12f3db3e6752d965df081c8fe.zip gdb-b3bd5b15117f18a12f3db3e6752d965df081c8fe.tar.gz gdb-b3bd5b15117f18a12f3db3e6752d965df081c8fe.tar.bz2 |
* scripttempl/elfarm.sc: Change text start address
back to zero.
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/elfarm.sc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ld/scripttempl/elfarm.sc b/ld/scripttempl/elfarm.sc index 98a3198..c3673a4 100644 --- a/ld/scripttempl/elfarm.sc +++ b/ld/scripttempl/elfarm.sc @@ -1,4 +1,3 @@ -/* start-sanitize-armelf */ # # Unusual variables checked by this code: # NOP - two byte opcode for no-op (defaults to 0) @@ -131,7 +130,7 @@ SECTIONS .rela.plt ${RELOCATING-0} : { *(.rela.plt) } .init ${RELOCATING-0} : { KEEP (*(.init)) } =${NOP-0} ${DATA_PLT-${PLT}} - .text ${RELOCATING+ 0x8000} : + .text ${RELOCATING-0} : { ${RELOCATING+${TEXT_START_SYMBOLS}} *(.text) @@ -265,4 +264,3 @@ SECTIONS ${OTHER_SECTIONS} } EOF -/* end-sanitize-armelf */ |