diff options
author | Doug Kwan <dougkwan@google.com> | 2011-04-22 21:50:03 +0000 |
---|---|---|
committer | Doug Kwan <dougkwan@google.com> | 2011-04-22 21:50:03 +0000 |
commit | c87e430233549c1670ff335b0d4614f1ea1d7edb (patch) | |
tree | 26e7cb53ea81d78cf09f94c1ac88b7e3968e0750 /gold/testsuite/Makefile.am | |
parent | 4161fbb015e3216b864fa502a22552d4b999eaf1 (diff) | |
download | gdb-c87e430233549c1670ff335b0d4614f1ea1d7edb.zip gdb-c87e430233549c1670ff335b0d4614f1ea1d7edb.tar.gz gdb-c87e430233549c1670ff335b0d4614f1ea1d7edb.tar.bz2 |
2011-04-22 Doug Kwan <dougkwan@google.com>
* arm.cc (Arm_output_section::Arm_output_section): Set SHF_LINK_ORDER
flag of a SHT_ARM_EXIDX section.
* testsuite/Makefile.am (arm_exidx_test): New test rules.
* testsuite/Makefile.in: Regenerate.
* testsuite/arm_exidx_test.s: New file.
* testsuite/arm_exidx_test.sh: Same.
Diffstat (limited to 'gold/testsuite/Makefile.am')
-rw-r--r-- | gold/testsuite/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am index 2675763..f2af492 100644 --- a/gold/testsuite/Makefile.am +++ b/gold/testsuite/Makefile.am @@ -2164,6 +2164,20 @@ arm_cortex_a8_local_reloc.o: arm_cortex_a8_local_reloc.s MOSTLYCLEANFILES += arm_cortex_a8_b_cond arm_cortex_a8_b arm_cortex_a8_bl \ arm_cortex_a8_blx arm_cortex_a8_local arm_cortex_a8_local_reloc +check_SCRIPTS += arm_exidx_test.sh +check_DATA += arm_exidx_test.stdout + +arm_exidx_test.stdout: arm_exidx_test.so + $(TEST_READELF) -S $< > $@ + +arm_exidx_test.so: arm_exidx_test.o ../ld-new + ../ld-new -shared -o $@ $< + +arm_exidx_test.o: arm_exidx_test.s + $(TEST_AS) -o $@ $< + +MOSTLYCLEANFILES += arm_exidx_test.so + endif DEFAULT_TARGET_ARM endif NATIVE_OR_CROSS_LINKER |