Skip to content
Snippets Groups Projects
Commit 9ce4a3bc authored by Karsten Poeck's avatar Karsten Poeck
Browse files

Allows ufsl and out as fasl format

parent ae93c61b
No related branches found
No related tags found
No related merge requests found
...@@ -3,3 +3,10 @@ ...@@ -3,3 +3,10 @@
#+(and ecl (not ecl-bytecmp)) (setq c:*suppress-compiler-warnings* t #+(and ecl (not ecl-bytecmp)) (setq c:*suppress-compiler-warnings* t
c:*suppress-compiler-notes* t c:*suppress-compiler-notes* t
c:*suppress-compiler-messages* t) c:*suppress-compiler-messages* t)
(let ((default-load-function-pair
(assoc (pathname-type (compile-file-pathname "test.lisp")) ext:*load-hooks* :test #'string=)))
(when default-load-function-pair
(let ((default-load-function (cdr default-load-function-pair)))
(pushnew (cons "out" default-load-function) ext:*load-hooks*)
(pushnew (cons "ufsl" default-load-function) ext:*load-hooks*))))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment