;; I know this is an old question, but the Lisp code I'm looking at is 25 years old :-)
I could not get compilation to work with clisp on Windows 10. However, this worked for me with gcl
https://www.cs.utexas.edu/users/novak/gclwin.html
;; my Lisp file jugs2.lisp
gcl -compile jugs2.lisp ;; this creates a jugs2.o file if the jugs2.lisp file has no errors
;; run gcl without parameters to start the Lisp GCL interpreter
;; download the .o file
(load "jugs2.o")
;; create exe
(si: save-system "jugs2")
;; when exe starts, it needs dll oncrpc.dll ;; this is located in the \ lib \ gcl-2.6.1 \ unixport folder created by gcl.bat.
;; when launched, it shows the Lisp environment, a call (main) to launch the main function (main)
Paul McCarthy Aug 26 '17 at 2:02 on 2017-08-26 02:02
source share