]> gitweb.factorcode.org Git - factor.git/commitdiff
use a different abi on linux for fortran
authorDoug Coleman <doug.coleman@gmail.com>
Sat, 28 Mar 2009 02:57:10 +0000 (21:57 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Sat, 28 Mar 2009 02:57:10 +0000 (21:57 -0500)
basis/math/blas/ffi/ffi.factor

index 5466ad2161bcfa6fb2821810a691674d64a060aa..48d43849c7abcb7c64b773641e1b21146d713682 100644 (file)
@@ -7,7 +7,7 @@ IN: math.blas.ffi
     { [ os macosx? ] [ "libblas.dylib" intel-unix-abi add-fortran-library ] }
     { [ os windows? cpu x86.32? and ] [ "blas.dll" f2c-abi add-fortran-library ] }
     { [ os windows? cpu x86.64? and ] [ "blas.dll" gfortran-abi add-fortran-library ] }
-    { [ os freebsd? ] [ "libblas.so" gfortran-abi add-fortran-library ] }
+    { [ os [ freebsd? ] [ linux? ] bi or ] [ "libblas.so" gfortran-abi add-fortran-library ] }
     [ "libblas.so" f2c-abi add-fortran-library ]
 } cond
 >>