Skip to content
Snippets Groups Projects
Commit b47f5295 authored by Daniel Kochmański's avatar Daniel Kochmański
Browse files

doc: add notes regarding GCL and XCL + loading

parent c1d37660
No related branches found
No related tags found
No related merge requests found
......@@ -73,6 +73,27 @@ daniel@turtleware.eu.
- LispWorks
- mocl
XCL and GCL won't work, if system is loaded with ASDF.
GCL has to first load the file, then compile it and load
the compiled before:
#+BEGIN_SRC lisp
(load "metering.cl") ; GCL's issue
(compile-file "metering.cl")
(load *)
#+END_SRC
METERING may be load with ASDF or by compiling and
loading file:
#+BEGIN_SRC lisp
#-asdf
(load (compile-file "metering.cl"))
,#+asdf
(load "metering.asd")
(asdf:load-system 'metering)
#+END_SRC
** Documentation
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment