diff options
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/lib/future.exp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/future.exp b/gdb/testsuite/lib/future.exp index 36dd611..17736ed 100644 --- a/gdb/testsuite/lib/future.exp +++ b/gdb/testsuite/lib/future.exp @@ -403,7 +403,11 @@ proc gdb_default_target_compile_1 {source destfile type options} { } if { $compiler == "" } { - set compiler [board_info $dest compiler] + if { [board_info $dest exists compiler] } { + set compiler [board_info $dest compiler] + } elseif { $compiler_type eq "c" } { + set compiler [find_gcc] + } if { $compiler == "" } { return "default_target_compile: No compiler to compile with" } |