diff options
author | Duncan Coutts <duncan.coutts@worc.ox.ac.uk> | 2006-03-30 21:23:21 +0000 |
---|---|---|
committer | Duncan Coutts <duncan.coutts@worc.ox.ac.uk> | 2006-03-30 21:23:21 +0000 |
commit | 18e65b5a41257108a7963ef9e3220e5700b89679 (patch) | |
tree | 5b9ab88201f107b4379b78ca8070b2fdb3ca1d68 /ghc | |
parent | 76dc4dfd2645e9bc44098a8be2b980726605a763 (diff) | |
download | haskell-18e65b5a41257108a7963ef9e3220e5700b89679.tar.gz |
Correct spelling mistake: GhcState1HcOpts -> GhcStage1HcOpts
Diffstat (limited to 'ghc')
-rw-r--r-- | ghc/HACKING | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ghc/HACKING b/ghc/HACKING index 181a05d9be..8b26ef40a1 100644 --- a/ghc/HACKING +++ b/ghc/HACKING @@ -117,14 +117,14 @@ If you will be hacking mostly on libraries, then you probably want to build stage1 with optimisation, because you're only building it once but using it many times. - GhcState1HcOpts = -O + GhcStage1HcOpts = -O If you are working on GHCi or Template Haskell, then you will be building and modifying the stage 2 compiler. Hence, you want to build stage 1 with, and stage 2 without, optimisation. - GhcState1HcOpts = -O - GhcState2HcOpts = -O0 -DDEBUG + GhcStage1HcOpts = -O + GhcStage2HcOpts = -O0 -DDEBUG Take a look through mk/config.mk for more settings you might want to override in build.mk. Remember: don't modify config.mk directly (it |