3.1 Introduction to the Compiler
You can select a compilation mode by using anoptimize
proclamation. The following proclamation selects the production mode of the Compiler:
(proclaim '(optimize (compilation-speed 0) (safety 1) (speed 3)))You can change back to development mode by using the following proclamation:
(proclaim '(optimize (compilation-speed 3) (safety 3) (speed 2)))The Compiler tells you which mode it is in the first time you invoke the Compiler after changing modes. You can also show the current compilation mode by using the function
report-compiler-options
.See Section 3.2.8 on page 40 for more information about optimization settings.
Generated with Harlequin WebMaker