aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorThomas Fitzsimmons <fitzsim@redhat.com>2002-05-01 22:28:36 +0000
committerDJ Delorie <dj@gcc.gnu.org>2002-05-01 18:28:36 -0400
commit9a06dc7d3f66b876b03598fb9e32d7ace8c89f13 (patch)
tree18ef527589cf12acd306332e4f78112f7361179b /configure.in
parentc72931a655a5c622fe58d23dc408b1a97d5870dd (diff)
downloadgcc-9a06dc7d3f66b876b03598fb9e32d7ace8c89f13.zip
gcc-9a06dc7d3f66b876b03598fb9e32d7ace8c89f13.tar.gz
gcc-9a06dc7d3f66b876b03598fb9e32d7ace8c89f13.tar.bz2
configure.in (noconfigdirs): Replace [ ] with test.
* configure.in (noconfigdirs): Replace [ ] with test. * configure.in (noconfigdirs): Do not add target-newlib if target == i[3456]86-*-linux*, and host == target. From-SVN: r53021
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in16
1 files changed, 15 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index b50ea1f..6c0e7d6 100644
--- a/configure.in
+++ b/configure.in
@@ -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 test 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 / /'`