OSDN Git Service

Daily bump.
[pf3gnuchains/gcc-fork.git] / libstdc++-v3 / configure.target
index db81c4e..ad899e9 100644 (file)
@@ -13,7 +13,6 @@
 #   target                The configuration target
 #   target_cpu            The configuration target CPU
 #   target_os             The configuration target OS
-#   target_optspace       --enable-target-optspace ("yes", "no", "")
 
 # It possibly modifies the following shell variables:
 #   cpu_include_dir        CPU-specific include directory, relative to srcdir
@@ -22,7 +21,6 @@
 
 # Set any CPU dependent compiler flags.
 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
-
 case "${target_cpu}" in
   alpha*)
     cpu_include_dir="config/cpu/alpha"
@@ -57,6 +55,9 @@ case "${target_cpu}" in
   sparc*)
     cpu_include_dir="config/cpu/sparc/sparc32"
     ;;
+  x86_64*)
+    cpu_include_dir="config/cpu/x86-64"
+    ;;
   *)
     cpu_include_dir="config/cpu/generic"
     ;;
@@ -65,7 +66,6 @@ esac
 
 # Set any OS dependent compiler flags.
 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
-
 case "${target_os}" in
   aix4.[3456789]* | aix[56789]*)
     os_include_dir="config/os/aix"
@@ -89,6 +89,9 @@ case "${target_os}" in
   irix6.5)
     os_include_dir="config/os/irix/irix6.5"
     ;;
+  mingw32*)
+    os_include_dir="config/os/mingw32"
+    ;;
   netbsd*)
     os_include_dir="config/os/bsd/netbsd"
     ;;
@@ -110,9 +113,8 @@ case "${target_os}" in
 esac
 
 
-# Set any flags dependant on the full target triplet.
+# Set any flags dependent on the full target triplet.
 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
-
 case "${target}" in
    *-*-aix[456789]*)
      # We set os_include_dir to config/os/aix only on AIX 4.3 and
@@ -132,21 +134,32 @@ case "${target}" in
      ;;
 esac
 
-# Set LIMITSH to the directory where the configuration-dependent
-# limits.h can be found.
+# Set CPULIMITSH to the directory where the configuration-dependent
+# cpu_limits.h can be found.
 # THIS TABLE IS SORTED.  KEEP IT THAT WAY.
-
 case "${target}" in
+   alpha-*-*)
+     CPULIMITSH=config/cpu/alpha
+     ;;
+   cris-*-*)
+     CPULIMITSH=config/cpu/cris
+     ;;
    i?86-*-*)
-     LIMITSH=config/cpu/i386
+     CPULIMITSH=config/cpu/i386
+     ;;
+   m68k-*-* | m680[246]0-*-*)
+     CPULIMITSH=config/cpu/m68k
      ;;
    powerpc-*-*)
-     LIMITSH=config/cpu/powerpc
+     CPULIMITSH=config/cpu/powerpc
      ;;
-   cris-*-*)
-     LIMITSH=config/cpu/cris
+   s390-*-* | s390x-*-*)
+     CPULIMITSH=config/cpu/s390
+     ;;
+   x86_64-*-*)
+     CPULIMITSH=config/cpu/x86-64
      ;;
    *)
-     LIMITSH=config/cpu/generic
+     CPULIMITSH=config/cpu/generic
      ;;
 esac