home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Source Code 1993 July / THE_SOURCE_CODE_CD_ROM.iso / bsd_srcs / usr.bin / lisp / lispnews / text0062.txt < prev    next >
Encoding:
Text File  |  1985-11-10  |  681 b   |  22 lines

  1.     There are now three new command line features for liszt:
  2.  
  3.     1. -E <s-expr>, where <s-expr> will be evaluated before compilation
  4.        starts.  For example, the setting of constants can be done in this way:
  5.  
  6.        liszt -E '(setq foobar "***foobar-string***")' foobar.l
  7.  
  8.        and in the file being compiled, foobar is accessed as '#.foobar.
  9.  
  10.     2. -I <include-file>, where <include-file> will be loaded (via load)
  11.        before compilation starts.
  12.  
  13.     3. A combination of the -S and -o switches will set the .s file, as in:
  14.  
  15.         liszt -S -o foo.vax.s foo.l
  16.  
  17.       where previously, the -S determined the name of the .s file (foo.s in
  18.       the above example).
  19.       
  20.  
  21.  
  22.