diff options
author | Alan Modra <amodra@gmail.com> | 2020-12-03 11:59:42 +1030 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-12-03 16:31:19 +1030 |
commit | c6162010adbb2d9b1a05a865ba9c9c1530a85a53 (patch) | |
tree | 4f55ad7a261bd3943055082ab1f6520ce56fa422 /gold/testsuite/Makefile.am | |
parent | 317c8bbc2968df9e80b6d2a9f39e43b76ff2015e (diff) | |
download | gdb-c6162010adbb2d9b1a05a865ba9c9c1530a85a53.zip gdb-c6162010adbb2d9b1a05a865ba9c9c1530a85a53.tar.gz gdb-c6162010adbb2d9b1a05a865ba9c9c1530a85a53.tar.bz2 |
[GOLD] PR26936 test
Fails if you configure with --disable-x86-used-note. Fix that.
* testsuite/Makefile.am (pr26936a.o): Pass -mx86-used-note=yes.
(pr26936b.o, pr26936c.o, pr26936d.o): Likewise.
* testsuite/Makefile.in: Regenerate.
Diffstat (limited to 'gold/testsuite/Makefile.am')
-rw-r--r-- | gold/testsuite/Makefile.am | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gold/testsuite/Makefile.am b/gold/testsuite/Makefile.am index 3ba2a30..39909de 100644 --- a/gold/testsuite/Makefile.am +++ b/gold/testsuite/Makefile.am @@ -4414,12 +4414,12 @@ pr26936b: pr26936d.o pr26936b.o pr26936c.o ../ld-new ../ld-new -Ttext-segment 0x10000 -z max-page-size=0x1000 \ -e _start -o $@ pr26936d.o pr26936b.o pr26936c.o pr26936a.o: pr26936a.s - $(TEST_AS) --gen-debug -o $@ $< + $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $< pr26936b.o: pr26936b.s - $(TEST_AS) --gen-debug -o $@ $< + $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $< pr26936c.o: pr26936c.s - $(TEST_AS) --gen-debug -o $@ $< + $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $< pr26936d.o: pr26936d.s - $(TEST_AS) --gen-debug -o $@ $< + $(TEST_AS) --gen-debug -mx86-used-note=yes -o $@ $< endif DEFAULT_TARGET_X86_64 |