diff options
author | Clément Chigot <chigot@adacore.com> | 2023-01-13 10:21:07 +0100 |
---|---|---|
committer | Clément Chigot <chigot@adacore.com> | 2023-02-21 09:07:06 +0100 |
commit | fd7f7424f5f68ad5cb16a5319f60ba15a7d23107 (patch) | |
tree | 9aa56f2aca304ca5e95d54e887ff888e7b7dcc3b /ld | |
parent | 284e8cbae0d78a3a0a0e3ceeb862ce5ad149a7a2 (diff) | |
download | gdb-fd7f7424f5f68ad5cb16a5319f60ba15a7d23107.zip gdb-fd7f7424f5f68ad5cb16a5319f60ba15a7d23107.tar.gz gdb-fd7f7424f5f68ad5cb16a5319f60ba15a7d23107.tar.bz2 |
ld/testsuite: don't output to /dev/null
Mingw doesn't have /dev/null and thus "-o /dev/null" will fail.
Currently, all the options are checked using this "-o /dev/null",
resulting in them being disabled on mingw hosts.
Fix that by outputting to a real file for all targets.
ld/ChangeLog:
* testsuite/config/default.exp: Replace "-o /dev/null" by a
file.
Diffstat (limited to 'ld')
-rw-r--r-- | ld/testsuite/config/default.exp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ld/testsuite/config/default.exp b/ld/testsuite/config/default.exp index 59a45e3..5c92547 100644 --- a/ld/testsuite/config/default.exp +++ b/ld/testsuite/config/default.exp @@ -383,6 +383,7 @@ proc compiler_supports { flag args } { append flags " [board_info [target_info name] ldflags]" } set fn "cs[pid].c" + set rfno "cs[pid].exe" set f [open $fn "w"] if { [llength $args] > 0 } { puts $f [lindex $args 0] @@ -391,7 +392,8 @@ proc compiler_supports { flag args } { } close $f set rfn [remote_download host $fn] - set avail [run_host_cmd_yesno "$CC_FOR_TARGET" "$flags $flag $rfn -o /dev/null"] + set avail [run_host_cmd_yesno "$CC_FOR_TARGET" "$flags $flag $rfn -o $rfno"] + remote_file host delete $rfno remote_file host delete $rfn file delete $fn return $avail |