From: espen Date: Sun, 6 Mar 2005 17:08:12 +0000 (+0000) Subject: CMUCL will now use LOAD-FOREIGN to load shared libraries instead of the internal... X-Git-Url: https://git.distorted.org.uk/~mdw/clg/commitdiff_plain/f45b1469efc196ee2ae685e7e0a74eecaafabd66?hp=f0c3c3e59fe910d16608ccdb6ae58b368e664552 CMUCL will now use LOAD-FOREIGN to load shared libraries instead of the internal SYSTEM::LOAD-OBJECT-FILE. --- diff --git a/tools/asdf-extensions.lisp b/tools/asdf-extensions.lisp index 75918f7..6b3da93 100644 --- a/tools/asdf-extensions.lisp +++ b/tools/asdf-extensions.lisp @@ -54,7 +54,7 @@ (defun load-dso (filename) #+sbcl(sb-alien:load-shared-object filename) - #+cmu(system::load-object-file filename)) + #+cmu(ext:load-foreign filename)) (defmethod perform ((o load-op) (c unix-dso))