ANNOUNCE: GHC 6.4.1 binary package for Mac OS X

2005-09-23 Thread Wolfgang Thaller
My GHC 6.4.1 packages for Mac OS X are finally ready. Mac OS X 10.3.9 (Panther) and 10.4.x (Tiger) http://www.uni-graz.at/imawww/haskell/GHC-6.4.1.pkg.zip This is an installer package that will install a full version of GHC with GHCi, profiling, dynamic linking, double-clickable icons a

ghc 6.4.1 web page

2005-09-23 Thread Iavor Diatchki
Hello, It appears that the instructions on the GHC 6.4.1 page for downloading and installing debian packages are incorrect (see bellow). -Iavor On Wed, Sep 21, 2005 at 11:00:39AM -0700, Iavor Diatchki wrote: > Hello, > > The GHC 6.4.1 download page > (http://haskell.org/ghc/download_ghc_641.html#d

RE: Garbage collecting CAFs

2005-09-23 Thread Simon Peyton-Jones
A quick reply before running to ICFP The trouble with CAFs is this ints :: [Int] ints = [1,2..] f a b = ...ints... The 'ints' CAF is alive at any point in program execution at which 'f' can be called in the future. But a call to 'f' may be represented only by a reference to f's entry point