From 18e65b5a41257108a7963ef9e3220e5700b89679 Mon Sep 17 00:00:00 2001 From: Duncan Coutts Date: Thu, 30 Mar 2006 21:23:21 +0000 Subject: [PATCH] Correct spelling mistake: GhcState1HcOpts -> GhcStage1HcOpts --- ghc/HACKING | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ghc/HACKING b/ghc/HACKING index 181a05d..8b26ef4 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 -- 1.7.10.4