Commit 39f5fa33 by Daniel Jacobowitz Committed by Benjamin Kosnik

configure.in: Remove NATIVE, NULL_TARGET.


2001-07-06  Daniel Jacobowitz  <drow@mvista.com>

        * configure.in: Remove NATIVE, NULL_TARGET.
        Set CANADIAN only for Canadian crosses.  Set xcompiling
        for both Canadian crosses and host-x-host crosses.
        * configure: Regenerated.

From-SVN: r43814
parent b8ef6023
2001-07-06 Daniel Jacobowitz <drow@mvista.com>
* configure.in: Remove NATIVE, NULL_TARGET.
Set CANADIAN only for Canadian crosses. Set xcompiling
for both Canadian crosses and host-x-host crosses.
* configure: Regenerated.
2001-07-06 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de> 2001-07-06 Peter Schmid <schmid@snake.iap.physik.tu-darmstadt.de>
* include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo. * include/bits/stl_vector.h (vector::_M_initialize_aux): Fix typo.
......
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -72,22 +72,21 @@ GLIBCPP_ENABLE_THREADS ...@@ -72,22 +72,21 @@ GLIBCPP_ENABLE_THREADS
GLIBCPP_ENABLE_CXX_FLAGS([none]) GLIBCPP_ENABLE_CXX_FLAGS([none])
GLIBCPP_ENABLE_SJLJ_EXCEPTIONS GLIBCPP_ENABLE_SJLJ_EXCEPTIONS
if test -n "$with_cross_host"; then if test -n "$with_cross_host" || test x"$build" != x"$host"; then
# We are being configured with a cross compiler. AC_REPLACE_FUNCS # We are being configured with some form of cross compiler.
# may not work correctly, because the compiler may not be able to # mknumeric_limits may not work correctly, either because the
# link executables. # compiler may not run on this machine, may not be able to link
# executables, or may produce executables we can't run on this
# machine.
xcompiling=1 xcompiling=1
NATIVE=no
# If Canadian cross, then don't pick up tools from the build # If Canadian cross, then don't pick up tools from the build
# directory. # directory.
if test x"$build" != x"$with_cross_host" && x"$build" != x"$target"; then if test -n "$with_cross_host" && test x"$build" != x"$with_cross_host"; then
CANADIAN=yes CANADIAN=yes
NULL_TARGET=yes
else else
CANADIAN=no CANADIAN=no
NULL_TARGET=no
fi fi
case "$target_alias" in case "$target_alias" in
...@@ -198,9 +197,7 @@ else ...@@ -198,9 +197,7 @@ else
# that include AC_TRY_COMPILE now, as the linker is assumed to be # that include AC_TRY_COMPILE now, as the linker is assumed to be
# working. # working.
xcompiling=0 xcompiling=0
NATIVE=yes
CANADIAN=no CANADIAN=no
NULL_TARGET=no
# Check for available headers. # Check for available headers.
AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h machine/endian.h \ AC_CHECK_HEADERS([nan.h ieeefp.h endian.h sys/isa_defs.h machine/endian.h \
...@@ -231,8 +228,6 @@ AC_LINK_FILES($os_include_dir/bits/ctype_noninline.h, \ ...@@ -231,8 +228,6 @@ AC_LINK_FILES($os_include_dir/bits/ctype_noninline.h, \
include/bits/ctype_noninline.h) include/bits/ctype_noninline.h)
AC_LINK_FILES($ATOMICITYH/bits/atomicity.h, include/bits/atomicity.h) AC_LINK_FILES($ATOMICITYH/bits/atomicity.h, include/bits/atomicity.h)
AM_CONDITIONAL(NULL_TARGET, test "$NULL_TARGET" = yes)
AM_CONDITIONAL(NATIVE, test "$NATIVE" = yes || test "$NULL_TARGET" = yes)
AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes) AM_CONDITIONAL(CANADIAN, test "$CANADIAN" = yes)
AC_CACHE_SAVE AC_CACHE_SAVE
......
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