Difference between revisions of "Jhc"

From HaskellWiki
Jump to navigation Jump to search
(Updated the required GHC version)
Line 3: Line 3:
 
== The Jhc Haskell Compiler ==
 
== The Jhc Haskell Compiler ==
   
Jhc is a haskell compiler that aims to produce the most efficient programs possible via whole program analysis and other optimizations. The compiler needs [[GHC]] 6.10.4 or later to be compiled; it cannot be compiled on Windows systems.
+
Jhc is a haskell compiler that aims to produce the most efficient programs possible via whole program analysis and other optimizations. It Also performs well as a cross compiler and is able to generate windows programs on a linux box or target embedded systems with little effort.
   
 
Go to the [http://repetae.net/computer/jhc Jhc homepage] for a tarball.
 
Go to the [http://repetae.net/computer/jhc Jhc homepage] for a tarball.
It is also possible to install an older version with cabal-install:
 
cabal install jhc
 
   
   

Revision as of 23:18, 9 July 2010

Template:Jhc

The Jhc Haskell Compiler

Jhc is a haskell compiler that aims to produce the most efficient programs possible via whole program analysis and other optimizations. It Also performs well as a cross compiler and is able to generate windows programs on a linux box or target embedded systems with little effort.

Go to the Jhc homepage for a tarball.


See also Implementations