home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-2.iso / Developer / languages / ada / Adaed.README < prev    next >
Encoding:
Text File  |  1993-01-10  |  5.5 KB  |  116 lines

  1.  
  2.  
  3. 1. INTRODUCTION.
  4.  
  5. This is the README file from the distribution of Ada/Ed version
  6. 1.11.0a, an Ada interpreter for Unix-based machines.  The distribution
  7. consists of one directory packaged into a compressed tar file available
  8. through anonymous ftp on cs.nyu.edu (128.122.140.24) in the directory
  9. pub/adaed.  The distribution contains all sources, documentation, the
  10. Makefile, and some shell scripts used in building Ada/Ed.  The ftp
  11. directory contains another distribution for 386/DOS machines.
  12.  
  13. This program is free software; you can redistribute it and/or modify
  14. it under the terms of the GNU General Purpose License as published by
  15. the Free Software Foundation; either version 2 of the License, or
  16. (at your option) any later version. See relevant excerpts below.
  17.  
  18. Ada/Ed is a translator-interpreter for Ada. It is intended as a teaching
  19. tool, and does not have the capacity, performance,  or robustness of 
  20. commercial Ada compilers. Ada/Ed was developed at New York University, as
  21. part of a long-range project in language definition and software prototyping. 
  22. The project produced the first validated translator for Ada, in the form of
  23. an executable definition of the language written in SETL. The SETL system
  24. served as design document and prototype for the C version being released today.
  25.  
  26. Ada/Ed was last validated under version 1.7 of the ACVC tests. Therefore it is
  27. not currently a validated Ada system, and users can expect to find  small
  28. discrepancies between Ada/Ed and currently validated compilers. 
  29.  
  30. Apart from the 100-odd tests of ACVC 1.11 that Ada/Ed currently fails, the
  31. major deficiency of the system is that, being an interpreter, it does not 
  32. implement most representation clauses, and thus does not support systems 
  33. programming close to the machine level. 
  34.  
  35. We trust that even with these limitations, Ada/Ed will be of use to the
  36. Ada community at large: students, educators, user, and implementors. The 
  37. sources of the system should be of interest to compiler writers, and we hope 
  38. that they will encourage the construction of software tools to make the system
  39. more usable and polished. The NYUADA project does not have the resources to
  40. promise regular new maintenance releases of the software, but will do its
  41. best to keep track of reported errors, workarounds, and fixes. We will also
  42. produce at irregular intervals design notes and additional documentation on
  43. the front-end of the system.  We  urge users to send comments, corrections 
  44. and bug reports (reduced to their simplest form!)  to:   adaed@cs.nyu.edu
  45.  
  46.  
  47. All users of Ada/Ed are urged to register themselves by
  48. sending email to the above address, or to the NYUADA project, New
  49. York University, 251 Mercer Street, New York, NY 10012. This will allow us to
  50. notify users of updates and new releases of the system.
  51.  
  52.  
  53. 2. (UN) WARRANTY
  54.  
  55. This software is release 1.11.0a of the Ada/Ed system.
  56. It is distributed absolutely WITHOUT ANY WARRANTY; without even the implied 
  57. warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  58. General Public License for more details.
  59.  
  60. To receive a copy of the GNU General Public License write to the Free
  61. Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139.
  62.  
  63. The following is an excerpt from the GNU General Public License concerning
  64. warranties:
  65.  
  66. Because the program is licensed free of charge, there is no warranty
  67. for the program, to the extent permitted by applicable law.  Except when
  68. otherwise stated in writing the copyright holders and/or other parties
  69. provide the program "as is" without warranty of any kind, either expressed
  70. or implied, including, but not limited to, the implied warranties of
  71. merchantability and fitness for a particular purpose.  The entire risk as
  72. to the quality and performance of the program is with you.  Should the
  73. program prove defective, you assume the cost of all necessary servicing,
  74. repair or correction.
  75.  
  76. In no event unless required by applicable law or agreed to in writing
  77. will any copyright holder, or any other party who may modify and/or
  78. redistribute the program as permitted above, be liable to you for damages,
  79. including any general, special, incidental or consequential damages arising
  80. out of the use or inability to use the program (including but not limited
  81. to loss of data or data being rendered inaccurate or losses sustained by
  82. you or third parties or a failure of the program to operate with any other
  83. programs), even if such holder or other party has been advised of the
  84. possibility of such damages.
  85.  
  86.  
  87. 3. INSTALLATION
  88.  
  89.  
  90. The directory contains C language source files, a Makefile, shell scripts
  91. used in building the system, and documentation.
  92.  
  93. To install:
  94.  
  95.     1.  Edit the Makefile.  The installation of Ada/Ed puts top level
  96.         executables in a directory that should be on users' PATH, and
  97.         other executables called by the driver plus predefined ada
  98.         library files are placed into a library directory.  The makefile
  99.         macros BINDIR and LIBDIR should be defined to name these
  100.         directories.  The makefile comes with gcc specified as the
  101.         C compiler, which is the only one that it has actually been
  102.         built with.  An ANSI C compiler is certainly needed.  Edit
  103.         MANDIR for the location of man pages.
  104.  
  105.     2.  Look at the file config.h and determine if the symbols specifying
  106.         word length and alignment will be set properly.
  107.  
  108.     3.  Build it. 'make install' will do everything; otherwise do
  109.         'make', 'make predef', and 'make install'.
  110.  
  111.     4.  Read the man pages for adaed and enjoy it.
  112.  
  113. Copyright C 1986-1992 New York University
  114.  
  115.  
  116.