From e5ffc202f2dd540babc08303d6f12b448c121df4 Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sat, 28 Mar 2009 14:17:24 -0500 Subject: [PATCH] fix blas ffi on linux64 --- basis/math/blas/ffi/ffi.factor | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/basis/math/blas/ffi/ffi.factor b/basis/math/blas/ffi/ffi.factor index 48d43849c7..0603a91370 100644 --- a/basis/math/blas/ffi/ffi.factor +++ b/basis/math/blas/ffi/ffi.factor @@ -7,6 +7,10 @@ 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? ] [ linux? cpu x86.32? and ] bi or ] + [ "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