[project @ 2002-04-19 12:37:48 by simonmar]
[ghc-hetmet.git] / ghc / ANNOUNCE
1
2    ============================================================
3     The (Interactive) Glasgow Haskell Compiler -- version 5.02
4    ============================================================
5
6 We are pleased to announce a new major release of the Glasgow Haskell
7 Compiler (GHC), version 5.02.  
8
9 This is the first version of GHC that has all of the following:
10
11   * An interactive read-eval-print loop, similar to Hugs.
12     You can load a mixture of compiled and interpreted modules;
13     in particular, you automatically use the precompiled libraries,
14     so your "interpreted" programs often run pretty fast.
15
16   * Works solidly on Windows platforms.  Installation is simple
17     (Installshield); you don't have to install anything else; 
18     and GHC does not get confused if you also happen to 
19     have (say) Cygwin installed.
20
21   * Implements the changes adopted for the (now almost finalised)
22     Revised Haskell 98 Language and Library Reports.
23
24   * The ability to emit "External Core", a documented typed 
25     intermediate language, suitable for slurping up into other
26     tools.  [Andrew Tolmach's work.]
27
28   * A particularly thorough pre-release test programme.
29     Some releases are more solid than others; this one is
30     at the solid end of the spectrum.  We fondly hope.
31
32 So if you have been waiting to upgrade your GHC 4.08, this is 
33 the moment. 
34
35
36 How to get it
37 ~~~~~~~~~~~~~
38 The easy way is to go to the WWW page, which should be self-explanatory:
39
40         http://www.haskell.org/ghc/
41
42 We supply binary builds in the native package format for various
43 flavours of Linux and BSD, and in InstallShield form for Windows
44 folks.  Binary builds for other platforms are available as a .tar.gz
45 which can be installed wherever you want.  The source distribution is
46 also available from the same place.
47
48 Once you have the distribution, please follow the pointers in the
49 README file to find all of the documentation about this release.
50
51
52 More details about what's new
53 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
54
55 5.02 incorporates many small refinements and bug fixes over the previous 
56 stable release (5.00.2).  There are no major language changes.
57
58    - Implements Haskell 98 (revised)
59
60    - Ability to emit External Core.  (But GhC can't read External Core
61      back in.  Yet.)
62
63    - Much improved support for Windows platforms.  Binary builds are
64      now entirely freestanding.  There's no need to install Cygwin or
65      Mingwin to use it.  It's a one-click-install-and-off-you-go story now.
66
67    - Several small changes to bring GHC into line with the newest Haskell 98 
68      report.
69
70    - GHCi (the interactive system) now works on Windows.
71
72    - Partial FFI support in GHCi.  At the moment, foreign import (both
73      static and dynamic) is supported on x86 and sparc platforms.
74
75    - A compacting garbage collector, to try and reduce space use.
76
77    - Ability to disconnect built-in numeric syntax from the supplied 
78      Prelude. This allows you to define your own arithmetic packages,
79      which Haskell98 doesn't quite support.
80
81    - Experimental: partial support for hierarchical module names.
82
83    - Experimental: following heroic hacking by Ken Shan, 5.02 now
84      works on Alpha (Tru64 only).  Many 64-bit bugs have been shaken
85      out.  At the moment only the batch-mode compiler works -- no GHCi
86      or native code generator yet.
87
88 We've found and fixed more bugs than you could possibly imagine.  A
89 big thank-you to all those who reported bugs in the 5.00.X series.  We
90 claim to have fixed almost all reported bugs.  In general we've spent
91 a large amount of effort trying to improve the stability of the
92 system relative to 5.00.X.  (Famous last words ...)
93
94 For full details see the release notes:
95
96         http://www.haskell.org/ghc/docs/5.02/set/release-5-02.html
97
98
99 Background
100 ~~~~~~~~~~
101 Haskell is a standard lazy functional programming language; the
102 current language version is Haskell 98, agreed in December 1998.
103
104 GHC is a state-of-the-art programming suite for Haskell.  Included is
105 an optimising compiler generating good code for a variety of
106 platforms, together with an interactive system for convenient, quick
107 development.  The distribution includes space and time profiling
108 facilities, a large collection of libraries, and support for various
109 language extensions, including concurrency, exceptions, and foreign
110 language interfaces (C, whatever).  GHC is distributed under a
111 BSD-style open source license.
112
113 A wide variety of Haskell related resources (tutorials, libraries,
114 specifications, documentation, compilers, interpreters, references,
115 contact information, links to research groups) are available from the
116 Haskell home page at
117
118         http://www.haskell.org/
119
120 GHC's Web page lives at
121
122         http://www.haskell.org/ghc/
123
124
125 On-line GHC-related resources
126 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
127
128 Relevant URLs on the World-Wide Web:
129
130 GHC home page             http://www.haskell.org/ghc/
131 Haskell home page         http://www.haskell.org/
132 comp.lang.functional FAQ  http://www.cs.nott.ac.uk/~gmh/faq.html
133
134
135
136 System requirements
137 ~~~~~~~~~~~~~~~~~~~
138 To compile programs with GHC, you need a machine with 64+MB memory, GCC
139 and perl. This release is known to work on the following platforms:
140
141   * i386-unknown-{linux,*bsd,mingw32}
142   * sparc-sun-solaris2
143   * alpha-dec-osf3
144   * powerpc-apple-darwin (MacOS/X)
145
146 Ports to the following platforms should be relatively easy (for a
147 wunderhacker), but haven't been tested due to lack of time/hardware:
148
149   * hppa1.1-hp-hpux{9,10}
150   * i386-unknown-solaris2
151   * mips-sgi-irix{5,6}
152   * {rs6000,powerpc}-ibm-aix
153
154 The builder's guide included in distribution gives a complete
155 run-down of what ports work; an on-line version can be found at
156
157    http://www.haskell.org/ghc/docs/latest/building/building-guide.html
158
159
160
161 Mailing lists
162 ~~~~~~~~~~~~~
163 We run mailing lists for GHC users and bug reports; to subscribe, use
164 the web interfaces at
165
166         http://www.haskell.org/mailman/listinfo/glasgow-haskell-users
167         http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs
168
169 There are several other haskell and ghc-related mailing lists on
170 www.haskell.org; for the full list, see
171
172         http://www.haskell.org/mailman/listinfo/
173
174 Please report bugs using our SourceForge page at
175         
176         http://sourceforge.net/projects/ghc/
177
178 or send them to glasgow-haskell-bugs@haskell.org.
179
180 GHC users hang out on glasgow-haskell-users@haskell.org.  Bleeding
181 edge CVS users party on cvs-ghc@haskell.org.
182