diff options
author | Alan Modra <amodra@gmail.com> | 2021-02-08 21:06:17 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2021-02-09 23:36:16 +1030 |
commit | a57d17732eba20c7ebeaabd023e2f0816fb095f6 (patch) | |
tree | c53674c36b18d0e451321cdc1e0962507e4f0c08 /ld/testsuite/ld-arm | |
parent | 4a68fcd7f7da92d47f0f41df15fea30f790ed06c (diff) | |
download | gdb-a57d17732eba20c7ebeaabd023e2f0816fb095f6.zip gdb-a57d17732eba20c7ebeaabd023e2f0816fb095f6.tar.gz gdb-a57d17732eba20c7ebeaabd023e2f0816fb095f6.tar.bz2 |
Remove arm-symbianelf
* configure.ac: Delete arm*-*-symbianelf* entry.
* configure: Regenerate.
bfd/
* config.bfd (arm*-*-symbianelf*): Move from obsolete to removed.
* configure.ac: Delete symbian entries.
* elf-bfd.h (enum elf_target_os): Delete is_symbian.
* elf32-arm.c: Remove symbian support. Formatting.
* targets.c: Delete symbian entries.
* configure: Regenerate.
binutils/
* testsuite/lib/binutils-common.exp (supports_gnu_osabi): Remove
symbianelf.
gas/
* Makefile.am (TARG_ENV_HFILES): Remove config/te-symbian.h.
* config/tc-arm.c (elf32_arm_target_format): Remove TE_SYMBIAN
support.
* config/te-symbian.h: Delete.
* configure.tgt: Remove arm-*-symbianelf*.
* testsuite/gas/arm/arch4t-eabi.d: Don't mention symbianelf in
target selection.
* testsuite/gas/arm/arch4t.d: Likewise.
* testsuite/gas/arm/got_prel.d: Likewise.
* testsuite/gas/arm/mapdir.d: Likewise.
* testsuite/gas/arm/mapmisc.d: Likewise.
* testsuite/gas/arm/mapsecs.d: Likewise.
* testsuite/gas/arm/mapshort-eabi.d: Likewise.
* testsuite/gas/arm/thumb-eabi.d: Likewise.
* testsuite/gas/arm/thumb.d: Likewise.
* testsuite/gas/arm/thumbrel.d: Likewise.
* Makefile.in: Regenerate.
* po/POTFILES.in: Regenerate.
ld/
* Makefile.am (ALL_EMULATION_SOURCES): Remove earmsymbian.c.
Don't include symbian dep file.
* configure.tgt: Remove arm*-*-symbianelf* entry.
* emulparams/armsymbian.sh: Delete.
* ld.texi: Don't mention symbian.
* scripttempl/armbpabi.sc: Delete.
* testsuite/ld-arm/symbian-seg1.d: Delete.
* testsuite/ld-arm/symbian-seg1.s: Delete.
* testsuite/ld-arm/arm-elf.exp: Don't run symbian-seg1.
* Makefile.in: Regenerate.
* po/BLD-POTFILES.in: Regenerate.
Diffstat (limited to 'ld/testsuite/ld-arm')
-rw-r--r-- | ld/testsuite/ld-arm/arm-elf.exp | 4 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/symbian-seg1.d | 8 | ||||
-rw-r--r-- | ld/testsuite/ld-arm/symbian-seg1.s | 13 |
3 files changed, 0 insertions, 25 deletions
diff --git a/ld/testsuite/ld-arm/arm-elf.exp b/ld/testsuite/ld-arm/arm-elf.exp index 47d4225..ea1d1e1 100644 --- a/ld/testsuite/ld-arm/arm-elf.exp +++ b/ld/testsuite/ld-arm/arm-elf.exp @@ -53,10 +53,6 @@ if {[istarget "arm-*-vxworks"]} { run_dump_test "emit-relocs1-vxworks" } -if { [istarget "arm*-*-symbianelf*"] } { - run_dump_test "symbian-seg1" -} - # Exclude non-ARM-ELF targets. if { ![is_elf_format] || ![istarget "arm*-*-*"] } { diff --git a/ld/testsuite/ld-arm/symbian-seg1.d b/ld/testsuite/ld-arm/symbian-seg1.d deleted file mode 100644 index 21d8a00..0000000 --- a/ld/testsuite/ld-arm/symbian-seg1.d +++ /dev/null @@ -1,8 +0,0 @@ -#source: symbian-seg1.s -#ld: -Ttext 0x10000 -Tdata 0x400000 -#objdump: -dR -#... - +10000: 00400000 .word 0x00400000 - +10000: R_ARM_RELATIVE .data - +10004: 00010008 .word 0x00010008 - +10004: R_ARM_RELATIVE .text diff --git a/ld/testsuite/ld-arm/symbian-seg1.s b/ld/testsuite/ld-arm/symbian-seg1.s deleted file mode 100644 index 8f893a2..0000000 --- a/ld/testsuite/ld-arm/symbian-seg1.s +++ /dev/null @@ -1,13 +0,0 @@ - .text - .globl _start -_start: - .word datavar - .word rodatavar - - .section ".rodata", "a" -rodatavar: - .word 0 - - .section ".data", "aw" -datavar: - .word 0 |