summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* Fix hsc2hs docs: 'gcc' is now the default compiler, not 'ghc'; fixes #4341Ian Lynagh2010-09-281-1/+1
|
* Update Cabal's version numberIan Lynagh2010-09-231-1/+1
|
* Remove -fwarn-simple-patterns, and make -fwarn-incomplete-patterns include ↵simonpj@microsoft.com2010-09-222-30/+0
| | | | | | | | lambdas This makes \(x:xs) -> e want when you have -fwarn-incomplete-patterns, which is consistent.
* Remove an out of date paragraph from the user guide; fixes #4331Ian Lynagh2010-09-221-4/+0
|
* Add a release note about the typecheckerIan Lynagh2010-09-191-0/+8
|
* Library release notes for 7.0.1Ian Lynagh2010-09-171-4/+596
|
* Documentation for INLINABLEsimonpj@microsoft.com2010-09-151-10/+104
|
* Update release notes and docs with LLVM info.David Terei2010-09-147-52/+207
|
* Add a release note: "-dynload wrapper" removedIan Lynagh2010-09-111-0/+7
|
* put back the conversion of warn-lazy-unlifted-bindings into an error until 7.2Ian Lynagh2010-09-111-1/+1
| | | | | I think we'll currently still have too many people with old versions of alex/happy to want to make this an error now.
* 6.14 -> 7.0Ian Lynagh2010-09-113-6/+6
|
* Add a couple more release notesIan Lynagh2010-09-111-0/+15
|
* Document -dsuppress-module-prefixesIan Lynagh2010-09-112-0/+16
|
* updates to the release notesSimon Marlow2010-09-091-14/+66
|
* Remove "-dynload wrapper"; fixes trac #4275Ian Lynagh2010-09-081-11/+0
|
* users_guide.xml is now generatedIan Lynagh2010-08-281-11/+0
|
* Add a new-IO manager release noteIan Lynagh2010-08-271-0/+8
|
* Merge a duplicate release noteIan Lynagh2010-08-271-12/+6
|
* Typo, spotted by Johan TibellIan Lynagh2010-08-271-1/+1
|
* First pass at 6.14.1 release notesIan Lynagh2010-08-261-6/+461
|
* Fix typoIan Lynagh2010-08-241-1/+1
|
* Change how the dblatex/lndir problem is worked aroundIan Lynagh2010-08-241-33/+2
| | | | | | | | | | | Hack: dblatex normalises the name of the main input file using os.path.realpath, which means that if we're in a linked build tree, it find the real source files rather than the symlinks in our link tree. This is fine for the static sources, but it means it can't find the generated sources. We therefore also generate the main input file, so that it really is in the link tree, and thus dblatex can find everything.
* Clean the generated userguide sourcesIan Lynagh2010-08-241-0/+2
|
* Generate the bit in the user guide where we say what -fglasgow-exts doesIan Lynagh2010-08-223-35/+13
| | | | Stops the docs going out of sync with the code.
* Document --supported-extensionsIan Lynagh2010-08-223-4/+5
|
* Make -rtsopts more flexibleIan Lynagh2010-08-051-3/+3
| | | | | The default is a new "some" state, which allows only known-safe flags that we want on by default. Currently this is only "--info".
* Add a release note: GHCi import syntaxIan Lynagh2010-07-211-0/+7
|
* remove 'mode: xml' emacs settings (#2208)Simon Marlow2010-07-0821-21/+0
|
* Add docs for DatatypeContexts extensionIan Lynagh2010-07-071-0/+20
|
* trac #2362 (full import syntax in ghci)amsay@amsay.net2010-06-251-3/+5
| | | | 'import' syntax is seperate from ':module' syntax
* Fix typo in -ddump-pass's document.shelarcy2010-06-201-2/+2
|
* trac #1789 (warnings for missing import lists)amsay@amsay.net2010-06-181-0/+7
|
* Rename some variables from FOO to FOO_CMDIan Lynagh2010-06-161-2/+2
| | | | | | | | This fixes a problem with commands like gzip, where if $GZIP is exported in the environment, then when make runs a command it'll put the Makefile variable's value in the environment. But gzip treats $GZIP as arguments for itself, so when we run gzip it thinks we're giving it "gzip" as an argument.
* --install-signal-handles=no does not affect the timer signal (#1908)Simon Marlow2010-05-271-0/+9
|
* Update docs on view patternssimonpj@microsoft.com2010-06-141-4/+2
|
* Update ghci example output in user guide; patch from YitzGale in #4111Ian Lynagh2010-06-121-1/+4
|
* Add a release notes file for 6.14.1Ian Lynagh2010-05-302-1/+81
|
* Fix doc bugs (#4071)Simon Marlow2010-05-251-3/+3
|
* Remove the Unicode alternative for ".." (#3894)Simon Marlow2010-05-051-8/+0
|
* --make is now the default (#3515), and -fno-code works with --make (#3783)Simon Marlow2010-04-271-14/+110
| | | | | | | | | | | | | | | | | | | | | | If the command line contains any Haskell source files, then we behave as if --make had been given. The meaning of the -c flag has changed (back): -c now selects one-shot compilation, but stops before linking. However, to retain backwards compatibility, -c is still allowed with --make, and means the same as --make -no-link. The -no-link flag has been un-deprecated. -fno-code is now allowed with --make (#3783); the fact that it was disabled before was largely accidental, it seems. We also had some regressions in this area: it seems that -fno-code was causing a .hc file to be emitted in certain cases. I've tidied up the code, there was no need for -fno-code to be a "mode" flag, as far as I can tell. -fno-code does not emit interface files, nor does it do recompilation checking, as suggested in #3783. This would make Haddock emit interface files, for example, and I'm fairly sure we don't want to do that. Compiling with -fno-code is pretty quick anyway, perhaps we can get away without recompilation checking.
* Fix the GHC API link in the main doc index.htmlIan Lynagh2010-04-221-1/+1
|
* Flags -auto and -auto-all operate only on functions not marked INLINE.Milan Straka2010-03-312-8/+12
|
* Update the user guide so it talks about the newer "do rec" notation everywhereIan Lynagh2010-04-162-4/+10
| | | | Some of the problems highlighted in trac #3968.
* Fix typoIan Lynagh2010-04-161-1/+1
|
* Rename forgotten -dverbose-simpl to -dverbose-core2core in the docs.Milan Straka2010-03-311-2/+2
|
* Add -pa and -V to the documentation of time profiling options.Milan Straka2010-03-291-2/+19
|
* Add the external core PDF to the new build systemIan Lynagh2010-03-213-62/+18
|
* Document the new RTS linker flagsIan Lynagh2010-03-142-2/+33
|
* Add -no-auto-link-packages docs to the user guide; fixes trac #3759Ian Lynagh2010-02-282-0/+17
|
* Whitespace only in docs/users_guide/packages.xmlIan Lynagh2010-02-281-711/+711
|