Re: Modify optimization setting on startup

Kevin Layer <[email protected]> Tue, 14 Oct 2008 09:04:47 -0700
Newsgroups gmane.lisp.allegro
Message-ID <[email protected]>
Andreas Thiele <[email protected]> wrote:

>> Hello Everybody,
>> 
>> can anybody give me a hint on how I can change optimization
>> settings on startup of the Lisp process or how to configure a Lisp
>> image
>> with non standard optimization settings?

(proclaim '(optimize (safety 3) (space 0) (speed 2)))

For example.

Be careful, though, as this could lead to hard to track down problems
if you set it to the extremes, and then forget about it.

Kevin