X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=docs%2Fusers_guide%2F6.6-notes.xml;h=bd4561960ef85238938d87d6f3215032b03f6874;hb=aedb94f5f220b5e442b23ecc445fd38c8d9b6ba0;hp=112b2c76e04e41d578b433aa66d1c0774ac69785;hpb=477e32528fc08ae74b02516301eaf333a95dfe71;p=ghc-hetmet.git diff --git a/docs/users_guide/6.6-notes.xml b/docs/users_guide/6.6-notes.xml index 112b2c7..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 of the change, or for the documentation. + 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,7 +41,7 @@ f (x, y) | x `seq` False = undefined | otherwise = [x,y] - See for more details. + See for more details. @@ -62,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 . + @@ -166,7 +171,6 @@ , , , - , , , , @@ -187,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. @@ -297,10 +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. There is more detail in - . + 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 . @@ -311,8 +336,9 @@ - The flag, which makes libraries - smaller, can now be used with and hence + 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. @@ -327,8 +353,14 @@ + GHC now supports postfix operators, as a simple generalisation of + left sections (). + + + + Parallel arrays, as enabled by -fparr, no - longer work. + longer work. They'll be coming back shortly, in full glory. @@ -360,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 . + @@ -385,7 +434,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -480,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 . @@ -953,7 +1005,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -1059,7 +1111,7 @@ - Version number 2.0 (was 1.0). + Version number 2.1 (was 1.0). @@ -1214,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. + + @@ -1607,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