gcc/gcc/ch
Theodore Papadopoulo 03856e1670 Make-lang.in (dvi): Use ch/chill.dvi not chill.dvi.
* Make-lang.in (dvi): Use ch/chill.dvi not chill.dvi.
(ch/chill.dvi): Use TEXI2DVI instead of custom tex calls.  Create
the dvi file in the ch directory.

From-SVN: r42657
2001-05-27 13:07:17 -04:00
..
ChangeLog Make-lang.in (dvi): Use ch/chill.dvi not chill.dvi. 2001-05-27 13:07:17 -04:00
Make-lang.in Make-lang.in (dvi): Use ch/chill.dvi not chill.dvi. 2001-05-27 13:07:17 -04:00
Makefile.in configure.in: Arrange to include defaults.h in [ht]config.h/tm.h. 2001-01-28 01:50:22 +00:00
README
actions.c alias.c [...] (init_alias_analysis, [...]): Use memset () instead of bzero (). 2000-11-07 22:50:06 +00:00
actions.h actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
ch-tree.def
ch-tree.h Standardize header guards. 2001-05-25 18:31:47 -07:00
chill.brochure
chill.in
chill.texi * chill.texi (INFO-DIR-ENTRY): Fix chill entry. 2000-06-03 15:32:06 -06:00
config-lang.in configure.in: Simplify language enabling/disabling code. 2000-12-12 20:28:52 +00:00
convert.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
decl.c c-decl.c (set_block): Set NAMES and BLOCKS from BLOCK. 2001-02-23 15:38:58 -05:00
except.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
expr.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
gperf Makefile.in (ch-version.c): Constify a char*. 1999-08-29 13:34:10 +00:00
grant.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
hash.h Makefile.in (ch-version.c): Constify a char*. 1999-08-29 13:34:10 +00:00
inout.c actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
lang-options.h lang-options.h: Bring comment in line with reality. 2001-01-05 19:12:21 +00:00
lang-specs.h gcc.c (cpp_options): Add spec for -ftabstop=. 2000-09-26 17:28:07 +00:00
lang.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
lex.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
lex.h actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
loop.c actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
nloop.c actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
parse.c diagnostic.h (set_internal_error_function): Renamed. 2001-02-04 18:18:43 -05:00
parse.h parse.h: Undefine DELAY if it's defined. 1999-09-07 17:02:43 -04:00
satisfy.c tree.h (TREE_CODE_LENGTH): New macro. 2000-05-27 11:21:17 -04:00
tasking.c actions.h: Standarize copyright statement. 2000-12-06 18:55:52 -07:00
tasking.h Standardize header guards. 2001-05-25 18:31:47 -07:00
timing.c configure.in: Arrange to include defaults.h in [ht]config.h/tm.h. 2001-01-28 01:50:22 +00:00
tree.c builtins.c (c_strlen): Use size_diffop and return ssizetype value. 2000-02-27 16:39:40 -05:00
typeck.c alias.c [...] (init_alias_analysis, [...]): Use memset () instead of bzero (). 2000-11-07 22:50:06 +00:00
xtypeck.c remove spurious code 2001-03-02 21:55:29 +00:00

README

This directory contains the GNU front-end for the Chill language,
contributed by Cygnus Solutions.

Chill is the "CCITT High-Level Language", where CCITT is the old
name for what is now ITU, the International Telecommunications Union.
It is is language in the Modula2 family, and targets many of the
same applications as Ada (especially large embedded systems).
Chill was never used much in the United States, but is still
being used in Europe, Brazil, Korea, and other places.

Chill has been standardized by a series of reports/standards.
The GNU implementation mostly follows the 1988 version of
the language, with some backwards compatibility options for
the 1984 version, and some other extensions.  However, it
does not implement all of the features of any standard.
The most recent standard is Z.200 (11/93), available from
http://www.itu.int/itudoc/itu-t/rec/z.html.

The GNU Chill implementation is not being actively developed.
Cygnus has one customer we are maintaining Chill for,
but we are not planning on putting major work into Chill.
This Net release is for educational purposes (as an example
of a different Gcc front-end), and for those who find it useful.
It is an unsupported hacker release.  Bug reports without
patches are likely to get ignored.  Questions may get answered or
ignored depending on our mood!  If you want to try your luck,
you can send a note to David Brolley <brolley@cygnus.com> or
Per Bothner <bothner@cygnus.com>.

One known problem is that we only support native builds of GNU Chill.
If you need a cross-compiler, you will find various problems,
including the directory structure, and the setjmp-based exception
handling mechanism.

The Chill run-time system is in the runtime sub-directory.
Notice rts.c contains a poor main's implementation of Chill
"processes" (threads).  It is not added to libchill.a.
We only use it for testing.  (Our customer uses a different
implementation for production work.)

The GNU Chill implementation was primarily written by
Per Bothner, along with Bill Cox, Wilfried Moser, Michael
Tiemann, and David Brolley.