Difference between revisions of "Jhc"

From HaskellWiki
Jump to navigation Jump to search
(Added a link to a comparison to other Haskell compilers)
(Added links and Blog section)
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. 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.
+
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.
   
   
 
=== Links ===
 
=== Links ===
  +
  +
* [http://www.haskell.org/mailman/listinfo/jhc The jhc mailing list page]
  +
  +
* [http://www.haskell.org/pipermail/jhc/ Archive of the jhc mailing list]
   
 
* [http://mirror.seize.it/report.html A comparison to other Haskell compilers] in speed and memory usage
 
* [http://mirror.seize.it/report.html A comparison to other Haskell compilers] in speed and memory usage
Line 14: Line 18:
 
* [[Implementations]]
 
* [[Implementations]]
   
  +
  +
==== Blog articles ====
  +
  +
* [http://ujihisa.blogspot.com/2009/09/installing-jhc-via-cabal-on-haskell.html Installing JHC Via Cabal on Haskell Platform]
  +
  +
* [http://lhc-compiler.blogspot.com/2010/07/great-haskell-compiler-shootout.html The Great Haskell Compiler shootout]
   
 
[[Category: Implementations]]
 
[[Category: Implementations]]

Revision as of 19:53, 27 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.


Links


Blog articles