diff options
author | Torbjörn SVENSSON <torbjorn.svensson@foss.st.com> | 2022-09-19 18:52:50 +0200 |
---|---|---|
committer | Torbjörn SVENSSON <torbjorn.svensson@foss.st.com> | 2022-09-30 18:24:46 +0200 |
commit | 86291da0057d01efdaba71f28cad80b69dc703a4 (patch) | |
tree | be95fcaef501d521528c8bfc7e82c6673b2f1bce /gcc | |
parent | 32f86f2b54dc97cb6a40edef421b6a30c3bd1c04 (diff) | |
download | gcc-86291da0057d01efdaba71f28cad80b69dc703a4.zip gcc-86291da0057d01efdaba71f28cad80b69dc703a4.tar.gz gcc-86291da0057d01efdaba71f28cad80b69dc703a4.tar.bz2 |
testsuite: Do not prefix linker script with "-Wl,"
The linker script should not be prefixed with "-Wl," - it's not an
input file and does not interfere with the new dump output filename
strategy.
gcc/testsuite/ChangeLog:
* lib/gcc-defs.exp: Do not prefix linker script with "-Wl,".
Signed-off-by: Torbjörn SVENSSON <torbjorn.svensson@foss.st.com>
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/testsuite/lib/gcc-defs.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gcc/testsuite/lib/gcc-defs.exp b/gcc/testsuite/lib/gcc-defs.exp index 42ef1d8..2102ed6 100644 --- a/gcc/testsuite/lib/gcc-defs.exp +++ b/gcc/testsuite/lib/gcc-defs.exp @@ -332,7 +332,7 @@ proc gcc_adjust_linker_flags_list { args } { continue } elseif { $skip != "" } then { set skip "" - } elseif { $opt == "-Xlinker" } then { + } elseif { $opt == "-Xlinker" || $opt == "-T" } then { set skip $opt } elseif { ![string match "-*" $opt] \ && [file isfile $opt] } { |