|
From: Claus B. <ma...@cb...> - 2002-01-14 22:44:11
|
Hello out there !
I had to make the following changes to the newest cvs version of
matlisp to get it to compile (with cmucl 18c on SuSE Linux 7.2). It
just adds a few missing exports (at least I think they were just
missing, maybe someone who knows the code better should take a close
look...)
-----snip-------
diff -ru ../work/nsci/matlisp.orig/packages.lisp matlisp/packages.lisp
--- ../work/nsci/matlisp.orig/packages.lisp Mon Jan 14 23:33:16 2002
+++ matlisp/packages.lisp Mon Jan 14 23:15:57 2002
@@ -113,7 +113,9 @@
#+:allegro (:use "COMMON-LISP" "FOREIGN-FUNCTIONS" "FORTRAN-FFI-ACCESSORS")
(:export
"DGESV" "DGEEV" "DGETRF" "DGESVD"
- "ZGESV" "ZGEEV" "ZGETRF" "ZGESVD" ))
+ "ZGESV" "ZGEEV" "ZGETRF" "ZGESVD"
+ "ZGEQRF" "ZUNGQR" "DGEQRF" "DORGQR" "DGEQP3" "ZGEQP3"
+ ))
(defpackage "DFFTPACK"
#+:cmu (:use "COMMON-LISP" "ALIEN" "C-CALL" "FORTRAN-FFI-ACCESSORS")
diff -ru ../work/nsci/matlisp.orig/src/lapack.lisp matlisp/src/lapack.lisp
--- ../work/nsci/matlisp.orig/src/lapack.lisp Mon Jan 14 23:33:15 2002
+++ matlisp/src/lapack.lisp Mon Jan 14 23:15:57 2002
@@ -66,7 +66,9 @@
#+:allegro (:use "COMMON-LISP" "FOREIGN-FUNCTIONS" "FORTRAN-FFI-ACCESSORS")
(:export
"DGESV" "DGEEV" "DGETRF" "DGESVD"
-"ZGESV" "ZGEEV" "ZGETRF" "ZGESVD" ))
+"ZGESV" "ZGEEV" "ZGETRF" "ZGESVD"
+"ZGEQRF" "ZUNGQR" "DGEQRF" "DORGQR" "DGEQP3" "ZGEQP3"
+))
(in-package "LAPACK")
-----snip-------
--
Claus Brunzema <ma...@cb...> http://www.cbrunzema.de
|