Fix cross builds.

From-SVN: r42497
This commit is contained in:
Anthony Green 2001-05-23 17:13:27 +00:00 committed by Anthony Green
parent 1ec0759764
commit 13094d1293
3 changed files with 290 additions and 304 deletions

View File

@ -1,3 +1,8 @@
2001-05-22 Anthony Green <green@redhat.com>
* configure.in: Tweak canadian cross test, and don't redefine GCJ
for cross builds.
2001-05-21 Per Bothner <per@bothner.com>
Implement invocation interface; don't create new thread for main.

585
libjava/configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -374,12 +374,10 @@ if test -n "${with_cross_host}"; then
# If Canadian cross, then don't pick up tools from the build
# directory.
if test "$build" != "$with_cross_host"; then
if test x"$build" != x"$with_cross_host" && x"$build" != x"$target"; then
CANADIAN=yes
GCC_UNWIND_INCLUDE=
GCJ="${target_alias}-gcj"
else
GCJ=
fi
NATIVE=no
else