Commit 6e1a435d by Tom Tromey Committed by Tom Tromey

re PR other/5874 (gcc-3.1 20020304 (prerelease) FAILs in libjava testsuite with…

re PR other/5874 (gcc-3.1 20020304 (prerelease) FAILs in libjava testsuite with RUNTESTFLAGS="--target_board 'unix{-fPIC,-fpic,}'")

	* libjava.jni/jni.exp (gcj_jni_build_header): Use local_exec, not
	target_compile.  Fixes PR other/5874.

From-SVN: r50923
parent 804db0c6
2002-03-17 Tom Tromey <tromey@redhat.com>
* libjava.jni/jni.exp (gcj_jni_build_header): Use local_exec, not
target_compile. Fixes PR other/5874.
2002-03-15 Eric Blake <ebb9@email.byu.edu>
For PR java/5902:
......
......@@ -30,11 +30,10 @@ proc gcj_jni_compile_c_to_so {file {options {}}} {
proc gcj_jni_build_header {file} {
set gcjh [find_gcjh]
set file [file rootname $file]
set options [list "compiler=$gcjh" \
"additional_flags=-jni"]
set x [prune_warnings [target_compile $file "" none $options]]
set x [string trim [prune_warnings \
[lindex [local_exec "$gcjh -jni $file" "" "" 300] 1]]]
if {$x != ""} {
verbose "target_compile failed: $x" 2
verbose "local_exec failed: $x" 2
fail "$file header generation"
return 0
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment