X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2F6.6-notes.xml;h=bd4561960ef85238938d87d6f3215032b03f6874;hb=aedb94f5f220b5e442b23ecc445fd38c8d9b6ba0;hp=6582935914479e7fa2c16a46bf4311240eb1578d;hpb=93c274ab468687d45c3abf0b33314b5b554f133f;p=ghc-hetmet.git diff --git a/docs/users_guide/6.6-notes.xml b/docs/users_guide/6.6-notes.xml index 6582935..bd45619 100644 --- a/docs/users_guide/6.6-notes.xml +++ b/docs/users_guide/6.6-notes.xml @@ -11,24 +11,24 @@ when you compile with , you now get an RTS flag that allows you to specify the number of OS threads that GHC should use. Defaults to 1. - See and and . - GHC's modules are now also bundled into a - ghc package, allowing programs to make use - of GHC as a library. The interface has not yet been properly - designed, so is subject to change. + GHC now handles impredicative polymorphism; see . - GHC now handles impredicative polymorphism and there are - changes to the way scoped type variables work; see - Simon's e-mail - for more details. + There are significant changes to the way scoped type variables work, + and some programs that used to compile may no longer do so. + The new story is documented in . + ( Simon's e-mail + gives some background, but the user manual should be complete (tell + us if not), and + certainly takes precedence if there is any conflict.) @@ -41,6 +41,7 @@ f (x, y) | x `seq` False = undefined | otherwise = [x,y] + See for more details. @@ -61,6 +62,11 @@ ignored in comments, so ASCII code with comments in, for example, Latin-1 will also work. + + + A way to have Latin-1 source files pre-processed by GHC is + described in . + @@ -96,6 +102,8 @@ performance when a lot of memory is taken up by STArrays, IOArrays, STRefs or IORefs. + For more details see + trac bug #650. @@ -163,7 +171,6 @@ , , , - , , , , @@ -184,6 +191,16 @@ + The + + option is now called + . + (the old name is still accepted for backwards compatibility, + but will be removed in the future). + + + + The flag has been removed. @@ -294,9 +311,21 @@ - It is now possible, with the -I RTS flag, - to control the amount of idle time that happens before a major - GC is performed. + If the program is idle for a certain amount of time then GHC + will now take the opportunity to do a major garbage collection. + The amount of idle time that is required before that happens + is controlled by the new -I RTS flag. + There is more detail in . + + + + + It is now possible to control the frequency that the RTS clock + ticks at with the new -V RTS flag. This is + normally handled automatically by other flags, but this flag + is needed if you want to increase the resolution of the time + profiler. + For more details see . @@ -307,8 +336,11 @@ - The flag can now be used with - , and hence can be used by cabal. + The flag, which when used to compile + libraries means executables using the library will be smaller, + can now be used with and hence + can be used by cabal. + See for more information. @@ -319,6 +351,18 @@ Template Haskell. + + + GHC now supports postfix operators, as a simple generalisation of + left sections (). + + + + + Parallel arrays, as enabled by -fparr, no + longer work. They'll be coming back shortly, in full glory. + + @@ -348,6 +392,23 @@ See for more information. + + + GHCi now has an :edit command which pops + up an editor on the most recently loaded file, or a + specified file. See for + more information. + + + + + GHCi now invokes print by default on the + result of IO actions and bindings at the prompt. This is + occasionally not what you want, so it can be disabled (at + least for bindings) with + :set -fno-print-bind-result. See . + @@ -373,7 +434,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -468,13 +529,16 @@ inline which, provided the RHS is visible to the compiler, forcibly inlines its argument. Otherwise, it acts like id. + For more details, see . GHC.Exts now provides a function - lazy which forces GHC to think that its - argument is lazy in its first argument. + lazy, where lazy f + behaves like f, except GHC is forced + to believe that it is lazy in its first argument. + For more details, see . @@ -941,7 +1005,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -1047,7 +1111,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -1202,6 +1266,14 @@ network package. + + + The Network.CGI.Compat module provides + a similar interface to the old Network.CGI + module, but it uses Text.XHtml rather than + Text.Html. + + @@ -1595,6 +1667,24 @@ + GHC As A Library + + Version number 6.6. + + + The internal modules of GHC are now available as a library, package + name ghc. + The interface has not been designed with use by other programs + in mind, so expect the API to vary radically in future + releases. + + + An introduction to using the library can be found + on the wiki. + + + + Internal changes