From a3a0c39166742c9ef9bb5d87ab51320b7f62cb92 Mon Sep 17 00:00:00 2001 From: Jing Yu Date: Thu, 11 Jun 2015 12:41:36 -0700 Subject: [PATCH] Fix broken gold/testsuite/script_test_12 in some setup. This patch adds -O0 to gold script_test_12 test, hoping that compiler won't change the order of globel variables that the test assumes. Changelog: testsuite/Makefile.am: Add -O0 to compile script_test_12 test. testsuite/Makefile.in: Regenerate. --- gold/ChangeLog | 5 +++++ gold/testsuite/Makefile.am | 4 ++++ gold/testsuite/Makefile.in | 4 ++++ 3 files changed, 13 insertions(+) diff --git a/gold/ChangeLog b/gold/ChangeLog index 94c0088ade..60d16d55a9 100644 --- a/gold/ChangeLog +++ b/gold/ChangeLog @@ -1,3 +1,8 @@ +2015-06-11 Jing Yu + + * testsuite/Makefile.am: Add -O0 for script_test_12 test. + * testsuite/Makefile.in: Regenerate. + 2015-06-11 Davide Italiano * gold.h (is_cident): Correct typo. diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am index 0ae99bd286..7669f27931 100644 --- a/gold/testsuite/Makefile.am +++ b/gold/testsuite/Makefile.am @@ -1669,6 +1669,10 @@ script_test_12: gcctestdir/ld $(srcdir)/script_test_12.t script_test_12a.o scrip check_PROGRAMS += script_test_12i script_test_12i: gcctestdir/ld $(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o $(LINK) -Bgcctestdir/ -Wl,-T,$(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o +script_test_12a.o: script_test_12a.c + $(COMPILE) -O0 -c -o $@ $< +script_test_12b.o: script_test_12b.c + $(COMPILE) -O0 -c -o $@ $< # Test --dynamic-list, --dynamic-list-data, --dynamic-list-cpp-new, # and --dynamic-list-cpp-typeinfo diff --git a/gold/testsuite/Makefile.in b/gold/testsuite/Makefile.in index 5228650dc8..3f8818dde6 100644 --- a/gold/testsuite/Makefile.in +++ b/gold/testsuite/Makefile.in @@ -5659,6 +5659,10 @@ uninstall-am: @GCC_TRUE@@NATIVE_LINKER_TRUE@ $(LINK) -Bgcctestdir/ -Wl,-T,$(srcdir)/script_test_12.t script_test_12a.o script_test_12b.o @GCC_TRUE@@NATIVE_LINKER_TRUE@script_test_12i: gcctestdir/ld $(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o @GCC_TRUE@@NATIVE_LINKER_TRUE@ $(LINK) -Bgcctestdir/ -Wl,-T,$(srcdir)/script_test_12i.t script_test_12a.o script_test_12b.o +@GCC_TRUE@@NATIVE_LINKER_TRUE@script_test_12a.o: script_test_12a.c +@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(COMPILE) -O0 -c -o $@ $< +@GCC_TRUE@@NATIVE_LINKER_TRUE@script_test_12b.o: script_test_12b.c +@GCC_TRUE@@NATIVE_LINKER_TRUE@ $(COMPILE) -O0 -c -o $@ $< @GCC_TRUE@@NATIVE_LINKER_TRUE@dynamic_list: basic_test.o gcctestdir/ld $(srcdir)/dynamic_list.t @GCC_TRUE@@NATIVE_LINKER_TRUE@ $(CXXLINK) -Bgcctestdir/ basic_test.o \ @GCC_TRUE@@NATIVE_LINKER_TRUE@ -Wl,--dynamic-list $(srcdir)/dynamic_list.t \ -- 2.34.1