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-Tag: clg-0-90~43 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~mdw/git/clg/commitdiff_plain/ecf3b9d80b88d9e2a18d8a03bc4b3ca1b5ec1f5b?hp=43d515e310c8ad017522bb24a469728846a6b5ac 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 @@ (defmethod perform :after ((operation compile-op) (dso unix-dso)) (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))