vlisp-compile

AutoCad AutoLISP Functions

 
vlisp-compile
 
 
 

Compiles AutoLISP source code into a FAS file

(vlisp-compile 'mode
filename [out-filename])
NoteThe Visual LISP IDE must be open in order for vlisp-compile to work.

Arguments

mode

The compiler mode, which can be one of the following symbols:

st Standard build mode

lsm Optimize and link indirectly

lsa Optimize and link directly

filename

A string identifying the AutoLISP source file. If the source file is in the AutoCAD support file search path, you can omit the path when specifying the file name. If you omit the file extension, .lspis assumed.

out-filename

A string identifying the compiled output file. If you do not specify an output file, vlisp-compile names the output with the same name as the input file, but replaces the extension with .fas.

Note that if you specify an output file name but do not specify a path name for either the input or the output file, vlisp-compile places the output file in the AutoCAD installation directory.

Return Values

T, if compilation is successful; otherwise nil.

Examples

Assuming that yinyang.lsp resides in a directory that is in the AutoCAD support file search path, the following command compiles this program:

_$ (vlisp-compile 'st "yinyang.lsp")
T

The output file is named yinyang.fas and resides in the same directory as the source file.

The following command compiles yinyang.lsp and names the output file GoodKarma.fas:

      (vlisp-compile 'st "yinyang.lsp"
"GoodKarma.fas")
    

Note that the output file from the previous command resides in the AutoCAD installation directory, not the directory where yinyang.lsp resides. The following command compiles yinyang.lsp and directs the output file to the c:\my documents directory:

      (vlisp-compile 'st 
      "
      yinyang.lsp
      "
       "c:/my documents/GoodKarma")
    

This last example identifies the full path of the file to be compiled:

      (vlisp-compile 'st "c:/program
files/<AutoCAD installation directory>/Sample/yinyang.lsp")
    

The output file from this command is named yinyang.fas and resides in the same directory as the input file.

See Also