diff options
author | Nick Clifton <nickc@redhat.com> | 2002-07-31 12:04:47 +0000 |
---|---|---|
committer | Nick Clifton <nickc@redhat.com> | 2002-07-31 12:04:47 +0000 |
commit | 8f64befb294f61bb55b79152b628a332dc1d2e3b (patch) | |
tree | 74b25f4a24a1de29580e711b64f2503cdec19e79 /ld/scripttempl | |
parent | 500800ca01a6b09418ca2f5079aa3bd4f4452dfc (diff) | |
download | gdb-8f64befb294f61bb55b79152b628a332dc1d2e3b.zip gdb-8f64befb294f61bb55b79152b628a332dc1d2e3b.tar.gz gdb-8f64befb294f61bb55b79152b628a332dc1d2e3b.tar.bz2 |
Add support for Thumb PLT entries with interworking
Diffstat (limited to 'ld/scripttempl')
-rw-r--r-- | ld/scripttempl/elf.sc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ld/scripttempl/elf.sc b/ld/scripttempl/elf.sc index 6bbe1b8..82bcd96 100644 --- a/ld/scripttempl/elf.sc +++ b/ld/scripttempl/elf.sc @@ -11,6 +11,7 @@ # OTHER_READWRITE_SECTIONS - other than .data .bss .ctors .sdata ... # (e.g., .PARISC.global) # OTHER_BSS_SECTIONS - other than .bss .sbss ... +# OTHER_PLT_SECTIONS - other than .plt ... # OTHER_SECTIONS - at the end # EXECUTABLE_SYMBOLS - symbols that must be defined for an # executable (e.g., _DYNAMIC_LINK) @@ -257,6 +258,7 @@ cat <<EOF } =${NOP-0} ${DATA_PLT-${BSS_PLT-${PLT}}} + ${DATA_PLT-${BSS_PLT-${OTHER_PLT_SECTIONS}}} .text ${RELOCATING-0} : { ${RELOCATING+${TEXT_START_SYMBOLS}} @@ -321,6 +323,7 @@ cat <<EOF ${RELOCATING+${DTOR}} .jcr ${RELOCATING-0} : { KEEP (*(.jcr)) } ${DATA_PLT+${PLT}} + ${DATA_PLT+${OTHER_PLT_SECTIONS}} ${RELOCATING+${OTHER_GOT_SYMBOLS}} .got ${RELOCATING-0} : { *(.got.plt) *(.got) } ${OTHER_GOT_SECTIONS} @@ -334,6 +337,7 @@ cat <<EOF ${RELOCATING+${OTHER_BSS_SYMBOLS}} ${SBSS} ${BSS_PLT+${PLT}} + ${BSS_PLT+${OTHER_PLT_SECTIONS}} .bss ${RELOCATING-0} : { *(.dynbss) |