mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-24 20:28:28 +08:00
* lib/java.exp (java_init): Ignore $GCJ if it is empty.
This commit is contained in:
@ -1,3 +1,7 @@
|
|||||||
|
2009-07-06 Daniel Jacobowitz <dan@codesourcery.com>
|
||||||
|
|
||||||
|
* lib/java.exp (java_init): Ignore $GCJ if it is empty.
|
||||||
|
|
||||||
2009-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
2009-07-06 Jan Kratochvil <jan.kratochvil@redhat.com>
|
||||||
|
|
||||||
* lib/gdbserver-support.exp (gdbserver_start): Loop spawning
|
* lib/gdbserver-support.exp (gdbserver_start): Loop spawning
|
||||||
|
@ -45,7 +45,7 @@ proc java_init { args } {
|
|||||||
if [info exists TOOL_EXECUTABLE] {
|
if [info exists TOOL_EXECUTABLE] {
|
||||||
set GCJ_UNDER_TEST $TOOL_EXECUTABLE;
|
set GCJ_UNDER_TEST $TOOL_EXECUTABLE;
|
||||||
} else {
|
} else {
|
||||||
if [info exists env(GCJ)] {
|
if { [info exists env(GCJ)] && $env(GCJ) != "" } {
|
||||||
set GCJ_UNDER_TEST $env(GCJ)
|
set GCJ_UNDER_TEST $env(GCJ)
|
||||||
} else {
|
} else {
|
||||||
global tool_root_dir
|
global tool_root_dir
|
||||||
|
Reference in New Issue
Block a user