Embeddable common lisp only builds .fasc not .o

213 Views Asked by At

The documentation for ECL suggests that

(compile-file "hello.lisp" :system-p t)

should produce a .o file however I instead get a .fasc file and the ouput

>  (compile-file "hello.lisp" :system-p t)
;;; Compiling hello.lisp;;; Compiling #<input stream hello.lisp>#P"hello.fasc"
NIL
NIL
0

There are 0 best solutions below