5 (format t
"path = ~A~%" (combine-path *maxima-sharedir
* "lapack"))
6 (format t
"*load-truename* = ~A~%" *load-truename
*) (format t
"sys =
7 ~A~%" (merge-pathnames (make-pathname :name
"lapack" :type
"system")
10 #+(or ecl abcl
) ($load
"lisp-utils/defsystem.lisp")
12 (let ((path (merge-pathnames (make-pathname :name
"odepack" :type
"system")
14 (format t
"path = ~S~%" path
) (load path
))
16 ;; Maxima errored out when any lapack function was used which
17 ;; most certainly was an ECL bug: Seems like the definition of the
18 ;; MAXIMA package shadows the array symbol from the COMMON-LISP package.
19 ;; Bugfix by Marius Gerbershagen:
20 #+ecl
(in-package #:common-lisp
)
21 (mk:oos
"maxima-odepack" :compile
)