* configure.in (configdirs): Add common.
authorDavid Edelsohn <dje.gcc@gmail.com>
Wed, 20 Nov 1996 09:02:28 +0000 (09:02 +0000)
committerDavid Edelsohn <dje.gcc@gmail.com>
Wed, 20 Nov 1996 09:02:28 +0000 (09:02 +0000)
* configure: Regenerated.

sim/configure
sim/configure.in

index 8f854dd17c4e98001f7add6879a356ebf2476bb3..b74ad75d9b9a950eb8c85faea4371447337c2f2f 100755 (executable)
@@ -12,7 +12,7 @@ ac_help=
 ac_default_prefix=/usr/local
 # Any additions from configure.in:
 ac_help="$ac_help
-  --enable-sim-powerpc "
+  --enable-sim "
 
 # Initialize some variables set by options.
 # The variables have the same names as the options, with
@@ -1173,23 +1173,22 @@ else
 fi
 
 
-# The PowerPC simulator uses the GCC extension long long as well as
-# ANSI prototypes, so don't enable it for random host compilers
-# unless asked to.
-
-# Check whether --enable-sim-powerpc or --disable-sim-powerpc was given.
-if test "${enable_sim_powerpc+set}" = set; then
-  enableval="$enable_sim_powerpc"
+# If a cpu ever has more than one simulator to choose from, use
+# --enable-sim=... to choose.
+# Check whether --enable-sim or --disable-sim was given.
+if test "${enable_sim+set}" = set; then
+  enableval="$enable_sim"
   case "${enableval}" in
-yes)   powerpc_sim=yes ;;
-no)    powerpc_sim=no ;;
-*)     { echo "configure: error: bad value ${enableval} given for sim-powerpc option" 1>&2; exit 1; } ;;
+yes | no) ;;
+*)     { echo "configure: error: bad value ${enableval} given for --enable-sim option" 1>&2; exit 1; } ;;
 esac
-else
-  if test x"$GCC" != x""; then powerpc_sim=yes; else powerpc_sim=no; fi
 fi
 
 
+# Assume simulator can be built with cc.
+# If the user passes --enable-sim built it regardless of $(CC).
+only_if_gcc=no
+
 # WHEN ADDING ENTRIES TO THIS MATRIX:
 #  Make sure that the left side always has two dashes.  Otherwise you
 #  can get spurious matches.  Even for unambiguous cases, do this as a
@@ -1203,42 +1202,55 @@ case "${target}" in
   h8300*-*-*)          sim_target=h8300 ;;
   h8500-*-*)           sim_target=h8500 ;;
   mips*-*-*)
-                               # The MIPS simulator can only be compiled
-                               # by gcc.
-                               if test "${GCC}" = "yes"; then
-                                 sim_target=mips
-                               else
-                                 sim_target=none
-                               fi
-                               ;;
-  sh*-*-*)             sim_target=sh ;; 
-  powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* )
-                       if test x"$powerpc_sim" = x"yes"; then sim_target=ppc; fi ;;
+       # The MIPS simulator can only be compiled by gcc.
+       sim_target=mips
+       only_if_gcc=yes
+       ;;
+  sh*-*-*)             sim_target=sh ;;
+  powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* | powerpc*-*-linux* )
+       # The PowerPC simulator uses the GCC extension long long as well as
+       # ANSI prototypes, so don't enable it for random host compilers
+       # unless asked to.
+       sim_target=ppc
+       only_if_gcc=yes
+       ;;
 # start-sanitize-v850
   v850-*-*)
-                               # The V850 simulator can only be compiled
-                               # by gcc.
-                               if test "${GCC}" = "yes"; then
-                                 sim_target=v850
-                               else
-                                 sim_target=none
-                               fi
-                               ;;
+       # The V850 simulator can only be compiled by gcc.
+       sim_target=v850
+       only_if_gcc=yes
+       ;;
 # end-sanitize-v850
   w65-*-*)             sim_target=w65 ;;
   z8k*-*-*)            sim_target=z8k ;;
-  sparc*-*-*)                  # The SPARC simulator can only be compiled
-                               # by gcc.
-                               if test "${GCC}" = "yes"; then
-                                 sim_target=erc32
-                               else
-                                 sim_target=none
-                               fi
-                               ;;
+  sparc*-*-*)
+       # The SPARC simulator can only be compiled by gcc.
+       sim_target=erc32
+       only_if_gcc=yes
+       ;;
   *)                   sim_target=none ;;
 esac
 
-configdirs=${sim_target}
+case "${enable_sim}" in
+no)    sim_target=none ;;
+yes)
+       if test ${only_if_gcc} = yes ; then
+               if test "${GCC}" != yes ; then
+                       echo "Can't enable simulator since not compiling with GCC."
+                       sim_target=none
+               fi
+       fi
+       ;;
+*)
+       if test ${only_if_gcc} = yes ; then
+               if test "${GCC}" != yes ; then
+                       sim_target=none
+               fi
+       fi
+       ;;
+esac
+
+configdirs="common ${sim_target}"
 subdirs="$configdirs"
 
 
index 167966b0d446622b9d1d006eb0a46f730b7d273c..bb5635c9c2d68f7f2cb39e02ea6f7bbfca6b5af2 100644 (file)
@@ -56,7 +56,7 @@ case "${target}" in
        sim_target=mips
        only_if_gcc=yes
        ;;
-  sh*-*-*)             sim_target=sh ;; 
+  sh*-*-*)             sim_target=sh ;;
   powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* | powerpc*-*-linux* )
        # The PowerPC simulator uses the GCC extension long long as well as
        # ANSI prototypes, so don't enable it for random host compilers
@@ -100,7 +100,7 @@ yes)
        ;;
 esac
 
-configdirs=${sim_target}
+configdirs="common ${sim_target}"
 AC_CONFIG_SUBDIRS($configdirs)
 
 AC_OUTPUT(Makefile)
This page took 0.029037 seconds and 4 git commands to generate.