Commit a1dd4c40 by Rainer Orth Committed by Rainer Orth

jvmti.exp (gcj_jvmti_compile_cxx_to_o): Add -pthread on alpha*-dec-osf*.

	* testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_compile_cxx_to_o):
	Add -pthread on alpha*-dec-osf*.
	* testsuite/libjava.jvmti/jvmti-interp.exp
	(gcj_jni_compile_c_to_so): Likewise.

From-SVN: r166476
parent 4260533a
2010-11-09 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* testsuite/libjava.jvmti/jvmti.exp (gcj_jvmti_compile_cxx_to_o):
Add -pthread on alpha*-dec-osf*.
* testsuite/libjava.jvmti/jvmti-interp.exp
(gcj_jni_compile_c_to_so): Likewise.
2010-10-12 Andrew John Hughes <ahughes@redhat.com>
Import GNU Classpath (libgcj-snapshot-20100921).
......
......@@ -37,6 +37,10 @@ proc gcj_jni_compile_c_to_so {file {options {}}} {
if { [istarget "arm*"] } {
lappend options "additional_flags=-Wno-abi"
}
# Tru64 UNIX requires <pthread.h> to be compiled with -pthread.
if { [istarget "alpha*-dec-osf*"] } {
lappend options "additional_flags=-pthread"
}
set filename [file tail $file]
set name [file rootname $filename]
......
......@@ -20,6 +20,10 @@ proc gcj_jvmti_compile_cxx_to_o {file {options {}}} {
if { [istarget "arm*"] } {
lappend options "additional_flags=-Wno-abi"
}
# Tru64 UNIX requires <pthread.h> to be compiled with -pthread.
if { [istarget "alpha*-dec-osf*"] } {
lappend options "additional_flags=-pthread"
}
set x [libjava_prune_warnings \
[target_compile $file $oname object $options]]
......
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