mirror of git://gcc.gnu.org/git/gcc.git
jvmti-interp.exp (gij_jvmti_test_one): Add -shared-libgcc to the cxxflaglist for Darwin.
2007-01-31 Andreas Tobler <a.tobler@schweiz.org> * testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Add -shared-libgcc to the cxxflaglist for Darwin. From-SVN: r121438
This commit is contained in:
parent
6a50ab1837
commit
d36114b201
|
@ -1,3 +1,8 @@
|
|||
2007-01-31 Andreas Tobler <a.tobler@schweiz.org>
|
||||
|
||||
* testsuite/libjava.jvmti/jvmti-interp.exp (gij_jvmti_test_one): Add
|
||||
-shared-libgcc to the cxxflaglist for Darwin.
|
||||
|
||||
2007-01-31 Tom Tromey <tromey@redhat.com>
|
||||
|
||||
* scripts.am, Makefile.in: Rebuilt.
|
||||
|
|
|
@ -112,9 +112,16 @@ proc gij_jvmti_test_one {file} {
|
|||
# directory of it to the cxxflaglist.
|
||||
lappend cxxflaglist "-L$cxxldlibflags"
|
||||
}
|
||||
|
||||
lappend cxxflaglist "-lstdc++"
|
||||
|
||||
# If you're building the compiler with --prefix set to a place
|
||||
# where it's not yet installed, then the linker won't be able to
|
||||
# find the libgcc used by libgcj.dylib/libstdc++.dylib. We could pass
|
||||
# the -dylib_file option, but that's complicated, and it's much easier
|
||||
# to just make the linker find libgcc using -L options.
|
||||
if { [istarget "*-*-darwin*"] } {
|
||||
lappend cxxflaglist "-shared-libgcc -lstdc++"
|
||||
} else {
|
||||
lappend cxxflaglist "-lstdc++"
|
||||
}
|
||||
set cxxflags [join $cxxflaglist]
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue