summaryrefslogtreecommitdiff
path: root/compiler/ghci/keepCAFsForGHCi.c
Commit message (Collapse)AuthorAgeFilesLines
* Module hierarchy: ByteCode and Runtime (cf #13009)Sylvain Henry2020-02-121-15/+0
| | | | Update haddock submodule
* Clean up `#include`s in the compilerJohn Ericson2019-10-051-1/+1
| | | | | | | | - Remove unneeded ones - Use <..> for inter-package. Besides general clean up, helps distinguish between the RTS we link against vs the RTS we compile for.
* Don't define DYNAMIC when compiling the dyn wayIan Lynagh2012-12-051-3/+2
| | | | | | | | | We want to compile the sources only once, and to produce both vanilla and dyn object files. This means that the sources can't differ for the two ways. This needed a bit of a kludge to get keepCAFsForGHCi included only in the dynamic library.
* Remove some antiquated C constructsIan Lynagh2011-08-011-2/+2
| | | | | | | | Fixes validate on amd64/Linux with: SRC_CC_OPTS += -Wmissing-parameter-type SRC_CC_OPTS += -Wold-style-declaration SRC_CC_OPTS += -Wold-style-definition
* Fix #3461: protect the use of keepCAFs with #ifdef DYNAMICSimon Marlow2009-08-281-0/+2
|
* #include fixSimon Marlow2009-08-051-1/+0
|
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+15
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.