Matcher sur alpha* et non pas sur alpha (le nouveau config.guess sort des trucs du style alphaev5) (PR#417)

git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@3558 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Xavier Leroy 2001-07-02 11:35:04 +00:00
parent 8d89bc946b
commit 280f52c6c8
1 changed files with 7 additions and 7 deletions

14
configure vendored
View File

@ -199,7 +199,7 @@ case "$bytecc,$host" in
bytecccompopts="-fno-defer-pop $gcc_warnings" bytecccompopts="-fno-defer-pop $gcc_warnings"
# No -lm library # No -lm library
mathlib="";; mathlib="";;
gcc,alpha-*-osf*) gcc,alpha*-*-osf*)
bytecccompopts="-fno-defer-pop $gcc_warnings" bytecccompopts="-fno-defer-pop $gcc_warnings"
if cc="$bytecc" sh ./hasgot -mieee; then if cc="$bytecc" sh ./hasgot -mieee; then
bytecccompopts="-mieee $bytecccompopts"; bytecccompopts="-mieee $bytecccompopts";
@ -208,7 +208,7 @@ case "$bytecc,$host" in
bytecclinkopts="-Wl,-T,12000000 -Wl,-D,14000000" bytecclinkopts="-Wl,-T,12000000 -Wl,-D,14000000"
# Tell gcc that we can use 32-bit code addresses for threaded code # Tell gcc that we can use 32-bit code addresses for threaded code
echo "#define ARCH_CODE32" >> m.h;; echo "#define ARCH_CODE32" >> m.h;;
cc,alpha-*-osf*) cc,alpha*-*-osf*)
bytecccompopts="-std1 -ieee";; bytecccompopts="-std1 -ieee";;
cc,mips-*-irix6*) cc,mips-*-irix6*)
# Add -n32 flag to ensure compatibility with native-code compiler # Add -n32 flag to ensure compatibility with native-code compiler
@ -361,11 +361,11 @@ model=default
system=unknown system=unknown
case "$host" in case "$host" in
alpha-*-osf*) arch=alpha; system=digital;; alpha*-*-osf*) arch=alpha; system=digital;;
alpha-*-linux*) arch=alpha; system=linux;; alpha*-*-linux*) arch=alpha; system=linux;;
alpha-*-freebsd*) arch=alpha; system=freebsd;; alpha*-*-freebsd*) arch=alpha; system=freebsd;;
alpha-*-netbsd*) arch=alpha; system=netbsd;; alpha*-*-netbsd*) arch=alpha; system=netbsd;;
alpha-*-openbsd*) arch=alpha; system=openbsd;; alpha*-*-openbsd*) arch=alpha; system=openbsd;;
sparc-*-sunos4.*) arch=sparc; system=sunos;; sparc-*-sunos4.*) arch=sparc; system=sunos;;
sparc-*-solaris2.*) arch=sparc; system=solaris;; sparc-*-solaris2.*) arch=sparc; system=solaris;;
sparc-*-*bsd*) arch=sparc; system=bsd;; sparc-*-*bsd*) arch=sparc; system=bsd;;