summaryrefslogtreecommitdiffstats
path: root/bin/config.sub
diff options
context:
space:
mode:
authorRobb Matzke <matzke@llnl.gov>1997-09-24 16:27:36 (GMT)
committerRobb Matzke <matzke@llnl.gov>1997-09-24 16:27:36 (GMT)
commit8a4d8a5b0c7e473566ae9347ac228eaea0490875 (patch)
treec44fb1c6ac5a656bcd4d9bdd0dc83cd4e00c32af /bin/config.sub
parentef094d25b6c10e024d56f7557d7d092ba03c4aee (diff)
downloadhdf5-8a4d8a5b0c7e473566ae9347ac228eaea0490875.zip
hdf5-8a4d8a5b0c7e473566ae9347ac228eaea0490875.tar.gz
hdf5-8a4d8a5b0c7e473566ae9347ac228eaea0490875.tar.bz2
[svn-r110] Fixed problems with cpu=i686
Diffstat (limited to 'bin/config.sub')
-rwxr-xr-xbin/config.sub15
1 files changed, 9 insertions, 6 deletions
diff --git a/bin/config.sub b/bin/config.sub
index e67a800..50e0832 100755
--- a/bin/config.sub
+++ b/bin/config.sub
@@ -42,6 +42,9 @@
# machine specification into a single specification in the form:
# CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
# It is wrong to echo any other type of specification.
+#
+# Robb Matzke, 24 Sep 1997
+# Changed i[345]86 to i[3456]86 so pentium pro processors are recognized.
if [ x$1 = x ]
then
@@ -129,7 +132,7 @@ esac
case $basic_machine in
# Recognize the basic CPU types without company name.
# Some are omitted here because they have special meanings below.
- tahoe | i[345]86 | i860 | m68k | m68000 | m88k | ns32k | arm \
+ tahoe | i[3456]86 | i860 | m68k | m68000 | m88k | ns32k | arm \
| arme[lb] | pyramid \
| tron | a29k | 580 | i960 | h8300 | hppa1.0 | hppa1.1 \
| alpha | we32k | ns16k | clipper | sparclite | i370 | sh \
@@ -144,7 +147,7 @@ case $basic_machine in
exit 1
;;
# Recognize the basic CPU types with company name.
- vax-* | tahoe-* | i[345]86-* | i860-* | m68k-* | m68000-* | m88k-* \
+ vax-* | tahoe-* | i[3456]86-* | i860-* | m68k-* | m68000-* | m88k-* \
| sparc-* | ns32k-* | fx80-* | arm-* | c[123]* \
| mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* | power-* \
| none-* | 580-* | cray2-* | h8300-* | i960-* | xmp-* | ymp-* \
@@ -308,19 +311,19 @@ case $basic_machine in
os=-mvs
;;
# I'm not sure what "Sysv32" means. Should this be sysv3.2?
- i[345]86v32)
+ i[3456]86v32)
basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sysv32
;;
- i[345]86v4*)
+ i[3456]86v4*)
basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sysv4
;;
- i[345]86v)
+ i[3456]86v)
basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-sysv
;;
- i[345]86sol2)
+ i[3456]86sol2)
basic_machine=`echo $1 | sed -e 's/86.*/86-unknown/'`
os=-solaris2
;;