Commit 9166f7a3 by Jeff Sturm Committed by Jeff Sturm

libjava.exp (libjava_arguments): Build with `-no-install' when $mode == "link".

* lib/libjava.exp (libjava_arguments): Build with `-no-install'
when $mode == "link".

From-SVN: r42928
parent 910e231e
2001-06-05 Jeff Sturm <jsturm@one-point.com>
* lib/libjava.exp (libjava_arguments): Build with `-no-install'
when $mode == "link".
2001-06-02 Anthony Green <green@redhat.com> 2001-06-02 Anthony Green <green@redhat.com>
* libjava.lang/invokethrow.java: Fake a pass for systems which * libjava.lang/invokethrow.java: Fake a pass for systems which
......
...@@ -313,6 +313,11 @@ proc libjava_arguments {{mode compile}} { ...@@ -313,6 +313,11 @@ proc libjava_arguments {{mode compile}} {
lappend args "compiler=$GCJ_UNDER_TEST -B$objdir/../" lappend args "compiler=$GCJ_UNDER_TEST -B$objdir/../"
} }
# Avoid libtool wrapper scripts when possible.
if {$mode == "link"} {
lappend args "additional_flags=-no-install"
}
return $args return $args
} }
......
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