home *** CD-ROM | disk | FTP | other *** search
/ Complete Linux / Complete Linux.iso / docs / devel / prolog / comment0.win < prev    next >
Encoding:
Text File  |  1994-06-08  |  2.8 KB  |  80 lines

  1.             Collected Comments
  2.  
  3. ################################################################
  4. It appears not possible to load .pl files that are in the root
  5. directory of a drive.  Put your files in subdirectories.  Also,
  6. donot make the working directory the root of a drive.
  7.  
  8. ################################################################
  9. It appears pkunzip puts all the    files in the same directory.  Use
  10. unzip.
  11.  
  12. ################################################################
  13. A news article with useful comments.  <jan> is added as comment by me.
  14.  
  15. Path: swi.psy.uva.nl!sun4nl!EU.net!howland.reston.ans.net!pipex!bnr.co.uk!corpgate!news.utdallas.edu!pc29112.utdallas.edu!ryoung
  16. From: ryoung@utdallas.edu (Young U. Ryu)
  17. Newsgroups: comp.lang.prolog
  18. Subject: SWI Prolog for Windows Experience
  19. Date: Tue, 7 Jun 1994 09:47:25
  20. Organization: University of Texas at Dallas
  21. Lines: 48
  22. Message-ID: <ryoung.7.0009CA98@utdallas.edu>
  23. NNTP-Posting-Host: pc29112.utdallas.edu
  24. X-Newsreader: Trumpet for Windows [Version 1.0 Rev A]
  25.  
  26.  
  27. I got SWI Prolog for Windows (from swi.psy.uva.nl: pub/SWI-Prolog)
  28. and installed it in Windows for Workgroup 3.11.
  29.  
  30. According to readme.win, if the base directory is c:\pl,
  31. it is not necessary to set SWIPL. But, without setting it,
  32. SWI Prolog does not work properly. E.g. enter help;
  33. SWI Prolog complains that it cannot find index ...
  34. So always set SWIPL, such as:
  35.  
  36.    set swipl=/c:/pl
  37.  
  38. or
  39.  
  40.    set swipl=/d:/lang/swipro
  41.  
  42. etc.
  43.  
  44. According to readme.win, the following does 'boot compilation':
  45.  
  46.   pl.exe -e startup/startup.pc -b boot/init.pl -c boot/load.pl
  47.  
  48. This only works when the base directory is c:\pl. If you install
  49. it in other directory, it does not work, even though you set SWIPL
  50. correctly. So do the following, instead:
  51.  
  52.   pl.exe -e /d:/lang/swipro/startup/startup.pc -b /d:/lang/swipro/boot/init.pl
  53.              -c /d:/lang/swipro/boot/load.pl
  54.  
  55. <jan> -e should be -o
  56. <jan> I think the original is fine if the working directory is the
  57.       installation directory.
  58.  
  59. [Of course, in one line ..., or File/Run of Windows Program Manager.]
  60.  
  61. Be sure to put / (forward slash) in front of the drive name.
  62.  
  63. ==========================
  64.  
  65. By the way, SWI Prolog is *COOL*. Good job.
  66.  
  67. Young
  68.  
  69.  
  70. +-------------------------------------------------------------------+
  71. | Young U. Ryu                        JO 4.4, P.O.Box 830688        |
  72. | Assistant Professor of MIS          2061 N. Floyd Road            |
  73. | School of Management                Richardson, Texas 75083-0688  |
  74. | University of Texas at Dallas       U.S.A.                        |
  75. |                                                                   |
  76. | Fax:   214-690-2799                 Internet: ryoung@utdallas.edu |
  77. +-------------------------------------------------------------------+
  78.  
  79. ################################################################
  80.