This is the mail archive of the gsl-discuss@sources.redhat.com mailing list for the GSL project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: gnux86 FP interface on opteron


Giulio Bottazzi writes:
 > This is exactly the case. config.guess gives "x86_64-unknown-linux-gnu"
 > on the Opteron, which does not match the case
 > 
 >     *86-*-linux*) 
 >     ac_cv_c_ieee_interface=gnux86

I will make the following change to handle it:

Index: configure.ac
===================================================================
RCS file: /home/gsl-cvs/gsl/configure.ac,v
retrieving revision 1.19
diff -u -r1.19 configure.ac
--- configure.ac	27 Dec 2004 17:24:01 -0000	1.19
+++ configure.ac	13 Jan 2005 16:33:14 -0000
@@ -207,7 +207,7 @@
     powerpc-*-linux*) 
         ac_cv_c_ieee_interface=gnuppc
         ;;
-    *86-*-linux*) 
+    *86-*-linux* | *86_64-*-linux*) 
         ac_cv_c_ieee_interface=gnux86
         ;;
     *-*-sunos4*) 




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]