Skip to content
Snippets Groups Projects
Commit f9193d2c authored by Liam M. Healy's avatar Liam M. Healy
Browse files

Correct syntax for cffi:define-foreign-library

parent 0e96d387
No related branches found
No related tags found
No related merge requests found
;; Load GSL
;; Liam Healy Sat Mar 4 2006 - 18:53
;; Time-stamp: <2010-05-23 11:37:01EDT init.lisp>
;; Time-stamp: <2010-06-24 09:57:20EDT init.lisp>
;;
;; Copyright 2006, 2007, 2008, 2009, 2010 Liam M. Healy
;; Distributed under the terms of the GNU General Public License
......@@ -53,7 +53,7 @@
(cffi:load-foreign-library "/lib/lapack/cygblas.dll")
(cffi:define-foreign-library libgsl
(:unix "libgsl.so.0" "libgsl.so")
(:unix (:or "libgsl.so.0" "libgsl.so"))
(:darwin "libgsl.dylib")
(:cygwin "cyggsl-0.dll")
(t (:default "libgsl")))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment