From: <si...@EE...> - 2002-01-17 01:45:28
|
Claus, looks like your fix is exactly what was needed! thanks. eventually, it should make its way into the repository. regards, Tunc ----- Original Message ----- From: Claus Brunzema <ma...@cb...> Date: Monday, January 14, 2002 2:44 pm Subject: [Matlisp-devel] matlisp compilation problem and fix > 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 > > _______________________________________________ > Matlisp-devel mailing list > Mat...@li... > https://lists.sourceforge.net/lists/listinfo/matlisp-devel > |