When running the gdb.dlang test-cases, and forcing gdb_find_gdc to be used
rather than dejagnu's copy (mimicing what happens with an older dejagnu
without find_gdc), I run into these debug prints:
...
Tool Root: /data/vries/gdb/leap-15-4/build
CC: gdc
...
Remove these.
Tested on x86_64-linux.
proc gdb_find_gdc {} {
global tool_root_dir
- print "Tool Root: $tool_root_dir"
if {![is_remote host]} {
set file [lookfor_file $tool_root_dir gdc]
} else {
set CC [transform gdc]
}
- print "CC: $CC"
+
return $CC
}