<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
--></style>
</head>
<body class='hmmessage'>
I've&nbsp;the 6.10.4 version installed on my MacOS X 10.6 OS. Have I to uninstall this version of GHC before installing the Mac .pkg for the 6.12.1?<BR>
&nbsp;<BR>
Luca.<BR>&nbsp;<BR>&gt; Date: Mon, 14 Dec 2009 13:36:14 +0000<BR>&gt; From: igloo@earth.li<BR>&gt; To: glasgow-haskell-users@haskell.org; haskell@haskell.org<BR>&gt; CC: <BR>&gt; Subject: ANNOUNCE: GHC version 6.12.1<BR>&gt; <BR>&gt; <BR>&gt; ==============================================================<BR>&gt; The (Interactive) Glasgow Haskell Compiler -- version 6.12.1<BR>&gt; ==============================================================<BR>&gt; <BR>&gt; The GHC Team is pleased to announce a new major release of GHC. There<BR>&gt; have been a number of significant changes since the last major release,<BR>&gt; including:<BR>&gt; <BR>&gt; * Considerably improved support for parallel execution. GHC 6.10 would<BR>&gt; execute parallel Haskell programs, but performance was often not very<BR>&gt; good. Simon Marlow has done lots of performance tuning in 6.12,<BR>&gt; removing many of the accidental (and largely invisible) gotchas that<BR>&gt; made parallel programs run slowly.<BR>&gt; <BR>&gt; * As part of this parallel-performance tuning, Satnam Singh and Simon<BR>&gt; Marlow have developed ThreadScope, a GUI that lets you see what is<BR>&gt; going on inside your parallel program. It's a huge step forward from<BR>&gt; "It takes 4 seconds with 1 processor, and 3 seconds with 8 processors;<BR>&gt; now what?". ThreadScope will be released separately from GHC, but at<BR>&gt; more or less the same time as GHC 6.12.<BR>&gt; <BR>&gt; * Dynamic linking is now supported on Linux, and support for other<BR>&gt; platforms will follow. Thanks for this most recently go to the<BR>&gt; Industrial Haskell Group who pushed it into a fully-working state;<BR>&gt; dynamic linking is the culmination of the work of several people over<BR>&gt; recent years. One effect of dynamic linking is that binaries shrink<BR>&gt; dramatically, because the run-time system and libraries are shared.<BR>&gt; Perhaps more importantly, it is possible to make dynamic plugins from<BR>&gt; Haskell code that can be used from other applications.<BR>&gt; <BR>&gt; * The I/O libraries are now Unicode-aware, so your Haskell programs<BR>&gt; should now handle text files containing non-ascii characters, without<BR>&gt; special effort.<BR>&gt; <BR>&gt; * The package system has been made more robust, by associating each<BR>&gt; installed package with a unique identifier based on its exposed ABI.<BR>&gt; Now, cases where the user re-installs a package without recompiling<BR>&gt; packages that depend on it will be detected, and the packages with<BR>&gt; broken dependencies will be disabled. Previously, this would lead to<BR>&gt; obscure compilation errors, or worse, segfaulting programs.<BR>&gt; <BR>&gt; This change involved a lot of internal restructuring, but it paves the<BR>&gt; way for future improvements to the way packages are handled. For<BR>&gt; instance, in the future we expect to track profiled packages<BR>&gt; independently of non-profiled ones, and we hope to make it possible to<BR>&gt; upgrade a package in an ABI-compatible way, without recompiling the<BR>&gt; packages that depend on it. This latter facility will be especially<BR>&gt; important as we move towards using more shared libraries.<BR>&gt; <BR>&gt; * There are a variety of small language changes, including<BR>&gt; * Some improvements to data types: record punning, declaring<BR>&gt; constructors with class constraints, GADT syntax for type families<BR>&gt; etc.<BR>&gt; * You can omit the "$" in a top-level Template Haskell splice, which<BR>&gt; makes the TH call look more like an ordinary top-level declaration<BR>&gt; with a new keyword.<BR>&gt; * We're are deprecating mdo for recursive do-notation, in favour of<BR>&gt; the more expressive rec statement.<BR>&gt; * We've concluded that the implementation of impredicative polymorphism<BR>&gt; is unsustainably complicated, so we are re-trenching. It'll be<BR>&gt; deprecated in 6.12 (but will still work), and will be either removed<BR>&gt; or replaced with something simpler in 6.14.<BR>&gt; <BR>&gt; <BR>&gt; The full release notes are here:<BR>&gt; <BR>&gt; http://haskell.org/ghc/docs/6.12.1/html/users_guide/release-6-12-1.html<BR>&gt; <BR>&gt; How to get it<BR>&gt; ~~~~~~~~~~~~~<BR>&gt; <BR>&gt; The easy way is to go to the web page, which should be self-explanatory:<BR>&gt; <BR>&gt; http://www.haskell.org/ghc/<BR>&gt; <BR>&gt; We supply binary builds in the native package format for many<BR>&gt; platforms, and the source distribution is available from the same<BR>&gt; place.<BR>&gt; <BR>&gt; Packages will appear as they are built - if the package for your<BR>&gt; system isn't available yet, please try again later.<BR>&gt; <BR>&gt; <BR>&gt; Background<BR>&gt; ~~~~~~~~~~<BR>&gt; <BR>&gt; Haskell is a standard lazy functional programming language; the<BR>&gt; current language version is Haskell 98, agreed in December 1998 and<BR>&gt; revised December 2002.<BR>&gt; <BR>&gt; GHC is a state-of-the-art programming suite for Haskell. Included is<BR>&gt; an optimising compiler generating good code for a variety of<BR>&gt; platforms, together with an interactive system for convenient, quick<BR>&gt; development. The distribution includes space and time profiling<BR>&gt; facilities, a large collection of libraries, and support for various<BR>&gt; language extensions, including concurrency, exceptions, and foreign<BR>&gt; language interfaces (C, whatever). GHC is distributed under a<BR>&gt; BSD-style open source license.<BR>&gt; <BR>&gt; A wide variety of Haskell related resources (tutorials, libraries,<BR>&gt; specifications, documentation, compilers, interpreters, references,<BR>&gt; contact information, links to research groups) are available from the<BR>&gt; Haskell home page (see below).<BR>&gt; <BR>&gt; <BR>&gt; On-line GHC-related resources<BR>&gt; ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~<BR>&gt; <BR>&gt; Relevant URLs on the World-Wide Web:<BR>&gt; <BR>&gt; GHC home page http://www.haskell.org/ghc/<BR>&gt; GHC developers' home page http://hackage.haskell.org/trac/ghc/<BR>&gt; Haskell home page http://www.haskell.org/<BR>&gt; <BR>&gt; <BR>&gt; Supported Platforms<BR>&gt; ~~~~~~~~~~~~~~~~~~~<BR>&gt; <BR>&gt; The list of platforms we support, and the people responsible for them,<BR>&gt; is here:<BR>&gt; <BR>&gt; http://hackage.haskell.org/trac/ghc/wiki/Contributors<BR>&gt; <BR>&gt; Ports to other platforms are possible with varying degrees of<BR>&gt; difficulty. The Building Guide describes how to go about porting to a<BR>&gt; new platform:<BR>&gt; <BR>&gt; http://hackage.haskell.org/trac/ghc/wiki/Building<BR>&gt; <BR>&gt; <BR>&gt; Developers<BR>&gt; ~~~~~~~~~~<BR>&gt; <BR>&gt; We welcome new contributors. Instructions on accessing our source<BR>&gt; code repository, and getting started with hacking on GHC, are<BR>&gt; available from the GHC's developer's site run by Trac:<BR>&gt; <BR>&gt; http://hackage.haskell.org/trac/ghc/<BR>&gt; <BR>&gt; <BR>&gt; Mailing lists<BR>&gt; ~~~~~~~~~~~~~<BR>&gt; <BR>&gt; We run mailing lists for GHC users and bug reports; to subscribe, use<BR>&gt; the web interfaces at<BR>&gt; <BR>&gt; http://www.haskell.org/mailman/listinfo/glasgow-haskell-users<BR>&gt; http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs<BR>&gt; <BR>&gt; There are several other haskell and ghc-related mailing lists on<BR>&gt; www.haskell.org; for the full list, see<BR>&gt; <BR>&gt; http://www.haskell.org/mailman/listinfo/<BR>&gt; <BR>&gt; Some GHC developers hang out on #haskell on IRC, too:<BR>&gt; <BR>&gt; http://www.haskell.org/haskellwiki/IRC_channel<BR>&gt; <BR>&gt; Please report bugs using our bug tracking system. Instructions on<BR>&gt; reporting bugs can be found here:<BR>&gt; <BR>&gt; http://www.haskell.org/ghc/reportabug<BR>&gt; <BR>&gt; _______________________________________________<BR>&gt; Glasgow-haskell-users mailing list<BR>&gt; Glasgow-haskell-users@haskell.org<BR>&gt; http://www.haskell.org/mailman/listinfo/glasgow-haskell-users<BR>                                               <br /><hr />New! Receive and respond to mail from other email accounts from within Hotmail <a href='http://clk.atdmt.com/UKM/go/186394593/direct/01/ ' target='_new'>Find out how.</a></body>
</html>