[comp.lang.lisp] Compiling a program on AKCL 1.492

m1pkd00@arccs3.FRB.GOV (Prasad K. Dharmasena) (11/09/90)

How do I compile some Lisp code on AKCL so as to give me
a binary executable (i.e. equivalent of a.out from cc)?

When I compile the intermidiate c-file generated by 
AKCL, using the C compiler, I get some undefined symbols
(usually _main is one of them) Yes, I did have the .h
file and .data file in the same directory.

Many Thanks

-Prasad (fed!pkd  or  pkd@fed.frb.gov)

eliot@phoenix.Princeton.EDU (Eliot Handelman) (11/09/90)

In article <832@arccs2.fed.FRB.GOV> m1pkd00@arccs3.FRB.GOV (Prasad K. Dharmasena) writes:
;
;How do I compile some Lisp code on AKCL so as to give me
;a binary executable (i.e. equivalent of a.out from cc)?

You do this:

> (compile-file "code" :load t)
> (si:save-system "a.out")