home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / languages / lisp / gcl.1.1.README < prev    next >
Encoding:
Text File  |  1995-05-11  |  11.4 KB  |  362 lines

  1.  
  2. README:
  3.  
  4. s is a recompile of GNU Common LISP (gcl) under NeXTSTEP using GNU 
  5. Make and gcc-2.6.x.  Since some people have reported difficulty
  6. getting gcl to compile under NeXTSTEP with the NeXT supplied compilers.
  7. I've created this binary only distribution of gcl-1.1.  I have not made
  8. an i386 (or Sparc or HP) version because I used the FSF's version of gcc,
  9. not NeXT's.  I believe an i386 compile would be trivial.  A Sparc or HP 
  10. port would be much more difficult.
  11.  
  12. Legal:
  13.  
  14. I've used this software for two months now with no difficulties;
  15. however, I'm not the most demanding of users.  If you find a bug
  16. in the NeXT port, I'll take a look at it, but I offer no guarantees
  17. that the software will work, will be useful or any other legal crap.
  18. Use at your own risk.  If you find a bug in GCL, contact the author.
  19.  
  20. Getting:
  21. I've placed gcl on orst in the following location:
  22.  
  23. Readme:
  24. ftp://ftp.cs.orst.edu/pub/next/submissions/gcl-1.1.m68k.README
  25. Binary:
  26. ftp://ftp.cs.orst.edu/pub/next/submissions/gcl-1.1.m68k.tar.gz
  27.  
  28. I imagine it should migrate to:
  29. Readme:
  30. ftp://ftp.cs.orst.edu/software/NeXT/binaries/proglang/gcl-1.1.m68k.README
  31. Binary:
  32. ftp://ftp.cs.orst.edu/software/NeXT/binaries/proglang/gcl-1.1.m68k.tar.gz
  33.  
  34. Installing:
  35.  
  36. To install execute the following command (you may need to do this
  37. as root depending on your permissions in /usr/local*):
  38.  
  39. gzcat gcl-1.1.m68k.tar.gz | tar xvf -
  40.  
  41. This will place gcl in /usr/local/lib and put a shell script to invoke
  42. it in /usr/local/bin.
  43.  
  44. Enjoy
  45.  
  46. Erik Jacobsen
  47. jacobsen@cs.wisc.edu
  48.  
  49. What follows is an excerpt from the original README.
  50.  
  51. Description of GCL (GNU Common Lisp) system.
  52.  
  53. OVERVIEW:
  54.  
  55. The GCL system contains C and Lisp source files to build a Common Lisp
  56. sytem.  The original KCL system was written by Taiichi Yuasa and
  57. Masami Hagiya in 1984.  The AKCL system work was begun in 1987 by
  58. William Schelter and continued through 1994.  A number of people have
  59. contributed ports and pieces.  The file doc/contributors lists some of
  60. these.  In 1994 AKCL was released as GCL (GNU Common Lisp) under the
  61. GNU public library license.  Version akcl-1-624 was the last version
  62. made under the old license and using the old file change mechanism.
  63. This readme only applies to versions gcl.1.0 and later.  The GNU
  64. library license does allow redistribution of executables containing
  65. GCL as well as proprietary code, but such redistribution must be
  66. accompanied by sufficient material (eg .o files) to allow recipients
  67. to rebuild an executable, after possibly modifying GCL.  See the GNU
  68. file COPYING.LIB-2.0 for a full description of your right to copy this
  69. software.
  70.  
  71.  
  72.  
  73. OBTAINING SOURCES:
  74. -----------------
  75.  
  76. * There are source files on math.utexas.edu:pub/gcl/gcl.x.x.tgz You
  77. probably want the highest XX version number.  For example gcl-1.0.tgz
  78. would allow you to build the version 1.0 of GCL.  In the following
  79. this compressed tar file is simply referred to as gcl.tgz.  An
  80. alternate source for these files is ftp.cli.com:pub/gcl/gcl-XX.tgz If you
  81. do not have gzip it is available in the directory
  82. /anyonymous@prep.ai.mit.edu:/u2/emacs .
  83. GCL will also be available on prep.ai.mit.edu
  84.                    
  85.  
  86. MAKING THE SYSTEM:
  87. ==================
  88. To make the whole system, if you have obtained gcl.tgz. 
  89.  
  90. UNCOMPRESS and UNTAR the SOURCES:
  91. --------------------------------
  92.  
  93. Change to a directory in which you wish to put gcl, eg /usr/local,
  94. which we shall call PREFIX-DIR.
  95. Copy the file gcl.tgz to the PREFIX-DIR.
  96.  
  97. % gzip -dc gcl.tgz | tar  xvf -
  98.  
  99. This will create the directory ${PREFIX-DIR}/gcl-1.xxx with
  100. all the sources in it
  101.  
  102.  
  103.       
  104. ADD MACHINE DEFINITIONS TO MAKEFILES:
  105. ------------------------------------
  106.  
  107. Determine the NAME of your machine by looking in the MACHINES file (e.g.
  108. sun3-os4).
  109.  
  110.         % cd gcl-1.xxx 
  111.     % add-defs sun3-os4 
  112.  
  113.     You should finally be ready to go!
  114.  
  115. RUNNING MAKE:
  116. ------------
  117.  
  118.     % make
  119.  
  120. The make should continue without error.   There may be occasional
  121. warnings from the C compiler, but all files should compile successfully
  122. producing .o files.
  123.  
  124. At the end you should see a message at the end "Make of GCL xxx
  125. completed", where xxx stands for the version number.
  126.  
  127. TRY IT OUT:
  128. ----------
  129.  
  130. When it has finally finished you may invoke GCL by using
  131.  
  132. % xbin/gcl
  133. GCL (GNU Common Lisp)  Version(1.0)  Apr 21 00:52:31 CDT 1994
  134. Contains Enhancements by W. Schelter
  135. >(+ 2 3)
  136.  
  137. >5
  138.  
  139.  
  140.  
  141. INSTALLING:
  142. ----------
  143.     To install under /usr/local do
  144.  
  145.         make install
  146.  
  147.     To specify an alternative directory such as /lusr
  148.        do 
  149.  
  150.     make install PREFIX_DIR=/lusr
  151.  
  152.     The default installation puts a full executable in
  153.  
  154.         /usr/local/lib/gcl-version/unixport/saved_gcl
  155.  
  156.     and some doc in
  157.           
  158.           /usr/local/lib/gcl-version/doc/
  159.  
  160.     and some autoloading files in
  161.  
  162.       /usr/local/lib/gcl-version/lsp
  163.  
  164.         and a shell script in /usr/local/lib/gcl-version/xbin/gcl
  165.     This script is also copied to
  166.  
  167.     /usr/local/bin
  168.  
  169. FUTURE DIRECTIONS
  170. (and how you may be able to help)   Volunteers should contact
  171. William Schelter (wfs@math.utexas.edu)
  172.  
  173. a) Upgrading to comply with the forthcoming ANSI standard.   Work 
  174. needs to be done.   
  175.  
  176. b) Need work on providing a high level window interface.   One possible
  177. way would be a good connection with TCL/TK.   Another would be to go
  178. in the direction of CLIM.   
  179.  
  180. A new compiler has been written, which is closer to the ANSI standard
  181. and provides some other benefits.   It will be in a future release.
  182. We will need people willing to beta test and isolate any bugs.
  183.  
  184. Additonal work planned or desired:
  185.  
  186.   * Clean up distribution and installation.  Make it easier to link in
  187. C code such as Novak's window stuff.   Faslink is not portable (since
  188. many systems don't support ld -A).
  189.  
  190.   * Introduce COMMON-LISP and COMMON-LISP-USER packages as per ANSI
  191. standard, change the package functions to behave as in the ANSI
  192. standard.  Any other changes which people can identify which would
  193. make life easier, and are compatible with ANSI.
  194.  
  195.   * Introduce C level and Lisp level way of signalling errors of the
  196. types specified by the ANSI standard.  Make it so that when the CLOS
  197. is present these become error objects.
  198.  
  199.   * Fix the run-process stuff to properly deallocate processes and
  200. have listen do the right thing, by using select, which is POSIX.  Try
  201. to make it compatible with the one in Allegro or Lucid.
  202.  
  203.   * Turn ANSI documentation into the new Lisp's on-line documentation.
  204. This will be useful for development and for users.  No sense in basing
  205. our work on the CLTL 2.  Must go to the ANSI document itself.
  206.  
  207.   * Make an appropriate Unix man page.
  208.  
  209.   * Add my allocation files and other changes necessary to make
  210. INTERRUPTS safe.  This probably means adding in all the C files which
  211. I have already written.
  212.  
  213.   * Change function calls to all refer to C stack and pass return
  214. values in a uniform way, the way the new compiler does it.  This will
  215. greatly improve funcalling, since right now there are generally two
  216. types of functions which can be expected, and they expect their
  217. arguments in different places.
  218.  
  219.   * Change to the new compiler which does things better from the ANSI
  220. point of view, and is smaller, and makes all function calls go via the
  221. C stack.
  222.  
  223.   * Include CLOS support.  Possibly take this from PCL or from
  224. Attardi, who has written some.
  225.  
  226.   * Include a windowing interface with TCL/TK which is capable of
  227. producing TK (similar to Motif but public) style windows and
  228. scrollable menus, etc.  This implementation must be done in such a way
  229. that it works in at least one additional Lisp, such as Allegro or
  230. Lucid.
  231.  
  232.   * Loop package: either make sloop satisfy the standard or include
  233. another implementation.
  234.  
  235.   * Changes to READ for ANSI, (including case sensitivity, etc.).
  236.  
  237.   * Byte compiler based on first pass of the new compiler.  Ideally
  238. provides very small code and extremely rapid compiling for general
  239. platform.  Notes: I have put the interrupt and run-process stuff early
  240. on since it is necessary for window development.
  241.  
  242.   * Construct a Common Lisp test suite to help debug new releases.
  243.  
  244. DOCUMENTATION:
  245. ==============
  246.    If you use GNU emacs, a convenient method for viewing documentation
  247. of Common Lisp functions (or functions in an extended system), is
  248. provided by the doc/find-doc.el file.  This will be installed when you
  249. do make in the doc directory.  Adding the following to your .emacs
  250. file will allow you to use C-h d to find documentation.
  251.  
  252. (autoload 'find-doc "find-doc" nil t)
  253. (global-set-key "d" 'find-doc)
  254. (visit-doc-file "/usr/local/lib/gcl/doc/DOC")
  255.  
  256. See the file find-doc.el for more information.
  257. Otherwise you may use the describe command inside Lisp.
  258. For example (describe 'print) will print out information about
  259. print.   You may also peruse the file doc/DOC.
  260.  
  261.  
  262. TROUBLE SHOOTING (some common problems reported):
  263. ----------------   
  264.  
  265. 1) Did you extract the files with the original write dates--make
  266. depends heavily on this?
  267.  
  268. 2) Did you use -O on a compiler which puts out bad code?  Any time you
  269. change the settings or use a new c compiler this is a tricky point.
  270.  
  271. 3) If you can't save an image, try doing so on the file server rather
  272. than a client.
  273.  
  274. 4) Doing the make on a client with the main files on a server, has
  275. sometimes caused random breakage.  The large temp files used by the C
  276. compiler seem to sometimes get transferred incorrectly.  Solution: use
  277. the server for the compile.
  278.  
  279. 5) Did you make changes in the .defs or .h files, other than just
  280. commenting out a CC=gcc line?
  281.  
  282. 6) Did you read the recommendations in the XXXX.defs file on what
  283. C compiler versions work?
  284.  
  285.  
  286. CHANGING THINGS: MAYBE EDIT TWO FILES:
  287. --------------------
  288.  
  289. Normally you should not need to edit ANY files.  There may be some
  290. parameter sizes you wish to change or if you don't have gcc where
  291. we have made that the default, then see CC below.
  292.  
  293.  
  294. EDIT the appropriate h/NAME.defs file.   These are definitions to
  295. be included in the various makefiles.
  296.  
  297. For example if the `NAME' of your machine is sun3-os4.
  298.  
  299. % emacs h/sun3-os4.defs
  300.  
  301.    * CC: set C compiler options.  For example, if you are using the GNU
  302.      C compiler:
  303.  
  304.      CC = gcc -msoft-float -DVOL=volatile -I$(GCLDIR)/o
  305.  
  306.          Or, if you are using the conventional UNIX C compiler:
  307.  
  308.      CC = cc -DVOL= -I. -I$(GCLDIR)/o
  309.      
  310.    * ODIR_DEBUG:
  311.      
  312.      ODIR_DEBUG= -g
  313.  
  314.      If you want files in the main c source compiled with debugging
  315.      information.   Note this is incompatible with OFLAGS= -O on
  316.      some compilers.   Size will be smaller without -g, but you
  317.      are then helpless in the face of problems.
  318.      
  319.    * INITFORM: The normal thing is to just have the one form
  320.      required for fast loading.
  321.  
  322.     INITFORM=(si::build-symbol-table)
  323.  
  324.  
  325. -----------
  326.  
  327. EDIT the file h/NAME.h  (eg h/sun3-os4.h)
  328.  
  329. (Actually you probably don't need to change it)
  330.  
  331. This file will be included by virtually every compilation of C
  332. files, except the translated C produced by kcl.
  333.  
  334. % emacs h/sun3-os4.h
  335.  
  336.       if you wish to change a parameter such as MAXPAGE 16384 established
  337.       in bsd.h (ie. number of 2000 byte pages you want as your absolute max
  338.       swap space).   MAXPAGE must be a power of 2.
  339.  
  340.       #undef MAXPAGE
  341.       #define MAXPAGE (2 * 16384)
  342.  
  343.       You may similarly redefine VSSIZE the maximum size for the value
  344.       stack (running very deep recursion interpreted may well require this).
  345.  
  346.  
  347.  
  348. DISCLAIMER:
  349. ----------
  350.  
  351. W. Schelter, the University of Texas, and other parties provide this
  352. program on an "as is" basis without warranty of any kind, either
  353. expressed or implied, including, but not limited to, the implied
  354. warranties of merchantability and fitness for a particular purpose.
  355.  
  356.  
  357. Bill Schelter 
  358. wfs@math.utexas.edu
  359.  
  360. See the file doc/contributors for a partial list of people who have
  361. made helpful contributions to ports etc.
  362.