|
From: Matthew W. <we...@st...> - 2006-08-13 07:31:54
|
Hi all,
Let me start by saying thanks for such a nice package! I've been
using it for some time as the basis for some simple optimization code
and it's performing very well.
To compile on OS X with SBCL I needed the patch below, fixing what
appears to be a simple missing line.
For anyone who's interested, Matlisp works out-of-the-box (subject to
the single-line change below) with OS X 10.4, SBCL 0.9.15, CVS
Matlisp as of 2006-08-12, and g77 3.4.3 (from fink).
Matt.
--- configure.in.old 2006-08-12 22:05:48.000000000 -0700
+++ configure.in 2006-08-12 22:06:08.000000000 -0700
@@ -357,6 +357,7 @@
;;
*-*-darwin*)
LD="ld"
+ MATLIB="libmatlisp.so"
# Cyrus Harmon says -lcc_dynamic isn't needed for Mac OS X
# 10.4. But it's needed (apparently) for earlier versions.
|