home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / alst-3.04.lha / ALSt-3.04 / install.ms next >
Text File  |  1994-05-14  |  9KB  |  245 lines

  1. .NH
  2. Installation Instructions
  3. .PP
  4. The following lists installation instructions for those systems to which
  5. Version 3 of Little Smalltalk has been ported at present.
  6. Note that installation involves the creation of two programs.
  7. The first, called ``initial'', is run once to create the initial object
  8. image (usually a filed called ``systemImage'').  The second program is the
  9. smalltalk interpreter.  To run smalltalk, both these files must be
  10. accessible.  Systems that use the supplied Makefile run initial
  11. automatically; in some other systems you may need to do this manually. 
  12. .PP
  13. If you receive the distribution on Mac or IBM disks and you want to run the
  14. system under Unix you must ``undo'' some of the changes described below.
  15. .NH 2
  16. Atari
  17. .PP
  18. I've been told (no first hand exprience) that the code works on the atari.
  19. I've set up a minimal description in env.h - could somebody tell me if
  20. the atari supports prototypes, signals, or some of the other features?
  21. .PP
  22. You do have to make the 'rb' changes described for the IBM PC (below),
  23. however you keep the rm instruction instead of DEL, and change the editor
  24. to whatever your system has (memacs?).
  25. .NH 2
  26. Gnu C Compiler (Sequent Balance)
  27. .PP
  28. If at all possible, \fIUse the Gnu C Compiler\fP.  I have found the code to
  29. be much smaller (up to 1/3 smaller) and much faster (up to twice as fast).
  30. So far this has been used on the Sequent Balance system.
  31. .PP
  32. Note that these sources support old style prototypes, as are used in
  33. Lightspeed C and Turbo C, and not the newer ANSI prototypes as are used in
  34. the gcc compiler.
  35. So do not define PROTO when using the gcc compiler
  36. .NH 2
  37. HP-UX
  38. .PP
  39. Simply say ``make sysvtty'' to make a version with the tty interface.
  40. (As of yet, I don't have access to a system v system with an X-window
  41. interface, so I can't test that code).
  42. .NH 2
  43. IBM PC / Turbo C compiler
  44. .LP
  45. \fBNote:\fP If you receive the sources on 5\(12 disks containing both
  46. source and executable, the following changes have already been made 
  47. to the system.
  48. .PP
  49. Define the symbol TURBOC at the beginning of the file env.h.
  50. .PP
  51. Edit the file file.st, changing the command used to delete files from rm to
  52. del (notice the space following the del):
  53. .DS I
  54.     delete
  55.         ('del ', name) unixCommand
  56. .DE
  57. In the file file.st change the mode on the command to save images from w to wb.
  58. .DS I
  59.     saveImage: name    
  60.         scheduler critical: [
  61.             " first get rid of our own process "
  62.             scheduler removeProcess: scheduler currentProcess.
  63.         File new;
  64.             name: name;
  65.             open: 'wb';
  66.             saveImage;
  67.             close ]
  68. .DE
  69. In a similar manner change the mode on the file open in the initialize
  70. method in file tty.st to use wb instead of w.
  71. .DS I
  72.     initialize
  73.         " initialize the initial object image "
  74.         self createGlobals.
  75.         File new;
  76.             name: 'systemImage';
  77.             open: 'wb';
  78.             saveImage;
  79.             close.
  80. .DE
  81. And also in tty.st change the editor from vi to me (or whatever your
  82. favorite editor happens to be).
  83. .DS I
  84.         editor \(<- 'me'.
  85. .DE
  86. .PP
  87. Because of segmentation limits it is not possible to have an object table
  88. any larger than 6500 objects (the current default).
  89. This value is set by a define found in memory.h
  90. .DS I
  91. # define ObjectTableMax 6500
  92. .DE
  93. .PP
  94. Compile in the compact mode (small code, large data).
  95. .NH 2
  96. Macintosh Lightspeed C
  97. .PP
  98. NOTE: If you get the distribution on 3\(14 MAC Disks the source code
  99. changes described below have probably already been made for you.
  100. .PP
  101. The mac distrubtion disk contains the following.
  102. .IP (a)
  103. A folder called ``C Sources'' that contains (naturally) all the C sources.
  104. .IP (b)
  105. A folder called ``ST Sources'' that contains (also naturally) all the
  106. Smalltalk sources, plus an application called ``initial'' that can be used
  107. to create or recreate the initial object image.  To make changes to the
  108. image, simply edit the appropriate smalltalk files, run initial, and move
  109. the file ``systemImage'' to the appropriate location.
  110. .IP (c)
  111. Two Lightspeed C projects called ``TextEdit'' and ``Stdwin'', containing
  112. code taken from Guido van Rossums Standard Windows package.
  113. .IP (d)
  114. A file called ``systemImage'', which is the output of the application from
  115. part (b)
  116. .IP (e)
  117. An application called ``st'', which is the smalltalk interpreter.
  118. .IP (f)
  119. A folder called ``misc'' that contains various different files, such as
  120. documentation and other things.
  121. .PP
  122. It is only necessary to recompile if you make changes to the C source.
  123. If you make changes to the Smalltalk source you only need to rerun the
  124. application called ``initial'' contained in the ``ST Sources'' folder.
  125. .PP
  126. If you get the sources from some other location (say off the net), you must
  127. make the following alterations.
  128. Change the mode on the file open in the saveImage command (in file.st) and
  129. in the initalize command (file stdwin.st).  Define the symbol LIGHTC at the
  130. beginning of the file env.h  (See instructions for the IBM
  131. PC above for a fuller explanation).
  132. .PP
  133. To compile you need guido van rossums Standard Windows package.
  134. Follow his instructions to create the stdwin and textedit projects (these
  135. are already on the distribution disk).  To make the initial program, create
  136. a project ``initialProj'' with segments as follows.  In the first segment 
  137. place MacTraps.
  138. In the second segment place Stdwin.  In the third place TextEdit.
  139. In the forth place the Unix library files math, stdio, storage, strings and
  140. unix.  In the fifth place the sources filein.c, initial.c, interp.c,
  141. memory.c, names.c, news.c, primitives.c, unixio.c and winprims.c.
  142. In the sixth and final segment place lex.c and parser.c.
  143. To create the st program use the same structure, subsituting st.c for
  144. initial.c.
  145. You must check the ``separate STRS'' option on both projects.
  146. .PP
  147. Make sure when you run the initial object that all the smalltalk sources
  148. are in the current directory; it does not complain if it can't open a file,
  149. it simply goes on.
  150. Also when you fileIn a file, the file must be in the current directory.
  151. .PP
  152. The Mac version uses the windowing interface.
  153. It is currently very fragile.  (A few known bugs; can't restore from saved
  154. image files, output sometimes goes wrong places, output often doesn't
  155. appear until you click the mouse).
  156. .PP
  157. [ It would be nice if clicking on an image file would start the smalltalk
  158. application.  If anybody knows how to make Lightspeed C do this, let me
  159. know.  Thanks ].
  160. .NH 2
  161. Sequent Balance
  162. .PP
  163. Say ``make bsdtty'' to make a tty interface system.
  164. .NH 2
  165. TekTronix 4315, Green Hills C Compiler
  166. .PP
  167. Say ``make bsdtty'' to make a tty interface system.
  168. Say ``make bsdx11'' to make an x-windows interface system (still somewhat
  169. buggy).
  170. .NH 2
  171. VAX / VMS
  172. .PP
  173. Since VMS doesn't understand Unix Makefiles, the distribution tape supplies
  174. a command file you can use.
  175. First define the symbol VMS near the begining of the file env.h,
  176. then execute the command file called vms.com.
  177. This makes a version using the tty interface.
  178. A VMS version using the X-windows interface has not been created yet.
  179. .NH
  180. Test Cases
  181. .PP
  182. One you have a running system; the following can be used to run the
  183. standard test cases.
  184. First load the file test.st.  If you are using the windowing interface
  185. select the fileIn menu item and the file ``test.st'' (from the ST Sources
  186. folder), if you are using the tty interface use the following command
  187. .DS I
  188. File new; fileIn: 'test.st'
  189. .DE
  190. Then give the command to run all test cases.
  191. .DS I
  192. Test new all
  193. .DE
  194. Messages will be displayed as test cases are performed, and if any test
  195. cases fail.
  196. .NH
  197. The Standard Window Package
  198. .PP
  199. There is an experimental windows style interface based on Guido van rossums
  200. standard window package.  This permits the system to work on top of
  201. X-windows, as well as the macintosh.  Information on standard windows
  202. can be obtained directly from guido at guido@mcvax.uucp, or mcvax!guido, or
  203. possibly gvr@src.dec.com.
  204. His paper mail address is Guido van Rossum, Center for Mathematics and
  205. Computer Science, P.O. Box 4079, 1009 AB Amsterdam, The Netherlands.
  206. Sources for the standard window package are not included on the Little
  207. Smalltalk distribution, but they are available public domain by ftp from
  208. DEC SRC, machine gatekeeper.dec.com (address [128.45.9.52]).
  209. The subdirectory is pub/stdwin.
  210. Contact guido for more details.
  211. .PP
  212. To make th