summaryrefslogtreecommitdiff
path: root/driver
Commit message (Collapse)AuthorAgeFilesLines
* Fix the pattern for _hpc symbols: it incorrectly matched the _hp suffix tooSimon Marlow2006-12-121-1/+1
| | | | | | This has the undesitrable effect that stg_gc_gen_hp in the RTS was caught as an HPC symbol and put in the data segment.
* Fix _module_registered bug for sparc linux.Simon Marlow2006-10-061-2/+2
| | | | | | Patch by Ferris McCormick <fmccor@gentoo.org> This patch has been tested with GHC-6.4.2 where it fixes a huge number of testsuite failures (down from 406 to 17)
* Initial support for x86_64-darwinwolfgang.thaller@gmx.net2006-11-271-0/+40
| | | | Basic -fvia-C code generation is there, not much testing.
* Mac OS X mangler: follow some minor gcc changeswolfgang.thaller@gmx.net2006-11-201-4/+4
|
* Haskell Program Coverageandy@galois.com2006-10-241-0/+6
| | | | | | | | | | | | | | | | | | | | This large checkin is the new ghc version of Haskell Program Coverage, an expression-level coverage tool for Haskell. Parts: - Hpc.[ch] - small runtime support for Hpc; reading/writing *.tix files. - Coverage.lhs - Annotates the HsSyn with coverage tickboxes. - New Note's in Core, - TickBox -- ticked on entry to sub-expression - BinaryTickBox -- ticked on exit to sub-expression, depending -- on the boolean result. - New Stg level TickBox (no BinaryTickBoxes, though) You can run the coverage tool with -fhpc at compile time. Main must be compiled with -fhpc.
* fix for when path to GHC contains spaces, from #695Simon Marlow2006-06-221-1/+1
|
* A better icon for GHCiNeil Mitchell2006-06-021-0/+0
|
* Reorganisation of the source treeSimon Marlow2006-04-0717-0/+3128
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.