* configure.in (noconfigdirs): Do not add target-newlib if
authorThomas Fitzsimmons <fitzsim@redhat.com>
Wed, 1 May 2002 20:42:00 +0000 (20:42 +0000)
committerThomas Fitzsimmons <fitzsim@redhat.com>
Wed, 1 May 2002 20:42:00 +0000 (20:42 +0000)
target == i[3456]86-*-linux*, and host == target.

ChangeLog
configure.in

index a68118fca8cc94893347742ef197268756085869..e5a4345d4a4b20c2e0a84f90d736facfe336df6f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2002-03-19  Thomas Fitzsimmons  <fitzsim@redhat.com>
+
+       * configure.in (noconfigdirs): Do not add target-newlib if
+       target == i[3456]86-*-linux*, and host == target.
+
 2002-04-29  Mark Mitchell  <mark@codesourcery.com>
 
        * config.guess: Updated to 2002-04-26's version.
index b50ea1fd970db7a0e46f710921f29220f6d9a549..45492a19e526fc2da43ecac7b6bce406b71e0340 100644 (file)
@@ -806,6 +806,20 @@ case "${target}" in
     # linux has rx in libc
     skipdirs="$skipdirs target-librx"
     ;;
+  i[3456]86-*-linux*)
+    # This section makes it possible to build newlib natively on linux.
+    # If we are using a cross compiler then don't configure newlib.
+    if [ x${is_cross_compiler} != xno ] ; then
+         noconfigdirs="$noconfigdirs target-newlib"
+    fi
+    noconfigdirs="$noconfigdirs target-libgloss"
+    # If we are not using a cross compiler, do configure newlib.
+    # Note however, that newlib will only be configured in this situation
+    # if the --with-newlib option has been given, because otherwise
+    # 'target-newlib' will appear in skipdirs.
+    # linux has rx in libc
+    skipdirs="$skipdirs target-librx"
+    ;;
   *-*-linux*)
     noconfigdirs="$noconfigdirs target-newlib target-libgloss"
     # linux has rx in libc
@@ -1506,7 +1520,7 @@ case " $skipdirs " in
    fi
 
    case "${target}-${is_cross_compiler}" in
-   i[3456]86-pc-linux*-no)
+   i[3456]86-*-linux*-no)
       # Here host == target, so we don't need to build gcc,
       # so we don't want to discard standard headers.
       FLAGS_FOR_TARGET=`echo " $FLAGS_FOR_TARGET " | sed -e 's/ -nostdinc / /'`
This page took 0.038291 seconds and 4 git commands to generate.