2004-04-26 19:48:50 -04:00
|
|
|
The Glasgow Haskell Compiler is a state-of-the-art, open source, compiler and
|
|
|
|
interactive environment for the functional language Haskell. Highlights:
|
initial import of ghc-5.04.3, which takes the "longest compilation
time" award from mozilla and gcc3
From Don Stewart <dons@cse.unsw.edu.au> with tweaks from me
(i386 only for the moment)
--
The Glasgow Haskell Compiler is a robust, fully-featured, optimising
compiler for the functional programming language Haskell 98.
GHC compiles Haskell to either native code or C. It implements
numerous experimental language extensions to Haskell, including
concurrency, a foreign language interface, several type-system
extensions, exceptions, and so on. GHC comes with a generational
garbage collector, a space and time profiler, and a comprehensive
set of libraries.
2003-05-29 12:38:31 -04:00
|
|
|
|
2004-04-26 19:48:50 -04:00
|
|
|
* GHC supports the entire Haskell 98 language plus a wide variety of
|
|
|
|
extensions.
|
|
|
|
* GHC works on several platforms including Windows and most varieties of
|
|
|
|
Unix, and several different processor architectures. There are detailed
|
|
|
|
instructions for porting GHC to a new platform.
|
|
|
|
* GHC has extensive optimisation capabilities, including inter-module
|
|
|
|
optimisation.
|
|
|
|
* GHC compiles Haskell code either by using an intermediate C compiler
|
|
|
|
(GCC), or by generating native code on some platforms. The interactive
|
|
|
|
environment compiles Haskell to bytecode, and supports execution of
|
|
|
|
mixed bytecode/compiled programs.
|
|
|
|
* Profiling is supported, both by time/allocation and various kinds of
|
|
|
|
heap profiling.
|
|
|
|
* GHC comes with a wide range of libraries.
|