]> gitweb.factorcode.org Git - factor.git/commitdiff
use libcblas on openbsd
authorDoug Coleman <doug.coleman@gmail.com>
Wed, 9 Jul 2008 23:09:03 +0000 (18:09 -0500)
committerDoug Coleman <doug.coleman@gmail.com>
Wed, 9 Jul 2008 23:09:03 +0000 (18:09 -0500)
extra/math/blas/cblas/cblas.factor

index 31807b7389802ee2d73fce16866ce233921ab393..131007b9d07be36ee653e279b7f45c5fac0ce847 100644 (file)
@@ -4,6 +4,7 @@ IN: math.blas.cblas
 << "cblas" {
     { [ os macosx? ] [ "libblas.dylib" "cdecl" add-library ] }
     { [ os windows? ] [ "blas.dll" "cdecl" add-library ] }
+    { [ os openbsd? ] [ "libcblas.so" "cdecl" add-library ] }
     [ "libblas.so" "cdecl" add-library ]
 } cond >>