From: Prasad K. Dharmasena
Subject: Compiling a program on AKCL 1.492
Date: 
Message-ID: <832@arccs2.fed.FRB.GOV>
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  ···@fed.frb.gov)
From: Eliot Handelman
Subject: Re: Compiling a program on AKCL 1.492
Date: 
Message-ID: <3936@idunno.Princeton.EDU>
In article <···@arccs2.fed.FRB.GOV> ·······@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")