From 9a8d6a757d29ad8c80dc7640ac902d722b1b473f Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Fri, 31 Aug 2018 04:44:45 -0700 Subject: [PATCH] ld: Append -Wa,-mx86-used-note=no for S-records tests Since x86 assembler may generate .note.gnu.property section and S-records can't handle .note.gnu.property sections, add -mx86-used-note=no to S-records tests on ELF/x86 targets to avoid .note.gnu.property section. * testsuite/ld-srec/srec.exp: Append -Wa,-mx86-used-note=no to CC and CXX on ELF/x86 targets. --- ld/ChangeLog | 5 +++++ ld/testsuite/ld-srec/srec.exp | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/ld/ChangeLog b/ld/ChangeLog index 3a0f6a83559..a773d9e830b 100644 --- a/ld/ChangeLog +++ b/ld/ChangeLog @@ -1,3 +1,8 @@ +2018-08-31 H.J. Lu + + * testsuite/ld-srec/srec.exp: Append -Wa,-mx86-used-note=no to + CC and CXX on ELF/x86 targets. + 2018-08-31 H.J. Lu * testsuite/ld-i386/i386.exp: (ASFLAGS): Save, append diff --git a/ld/testsuite/ld-srec/srec.exp b/ld/testsuite/ld-srec/srec.exp index d155c18f2c7..440112c7566 100644 --- a/ld/testsuite/ld-srec/srec.exp +++ b/ld/testsuite/ld-srec/srec.exp @@ -357,6 +357,13 @@ set CC "$CC $PLT_CFLAGS $NOPIE_CFLAGS $NOPIE_LDFLAGS" set old_CXX "$CXX" set CXX "$CXX $PLT_CFLAGS $NOPIE_CFLAGS $NOPIE_LDFLAGS" +# S-records can't handle .note.gnu.property sections. +if { [is_elf_format] \ + && ([istarget "i?86-*-*"] || [istarget "x86_64-*-*"]) } { + set CC "$CC -Wa,-mx86-used-note=no" + set CXX "$CXX -Wa,-mx86-used-note=no" +} + if { ![ld_compile $CC $srcdir/$subdir/sr1.c tmpdir/sr1.o] \ || ![ld_compile $CC $srcdir/$subdir/sr2.c tmpdir/sr2.o] } { unresolved $test1 -- 2.30.2