From 3786579bb1285a655ad0cbdf28ec443a2dfb7acc Mon Sep 17 00:00:00 2001 From: simonmar Date: Mon, 4 Aug 2003 14:38:59 +0000 Subject: [PATCH] [project @ 2003-08-04 14:38:59 by simonmar] A couple of small updates that were sitting in my tree.. --- distrib/cross-port | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/distrib/cross-port b/distrib/cross-port index 36ef8ed..690e60b 100644 --- a/distrib/cross-port +++ b/distrib/cross-port @@ -59,13 +59,17 @@ if [ ! -f b2-stamp ]; then ./configure --with-ghc=$base/b1/ghc/compiler/stage1/ghc-inplace touch mk/build.mk - echo "GhcHcOpts = -O -H32m -fvia-C -keep-hc-files" >> mk/build.mk + # The bootstrapped compiler should probably generate unregisterised + # code too. If you don't want it to, then comment out this line: + echo "GhcUnregisterised = YES" >> mk/build.mk + echo "SRC_HC_OPTS += -keep-hc-file -fvia-C" >> mk/build.mk echo "GhcWithNativeCodeGen = NO" >> mk/build.mk echo "GhcWithInterpreter = NO" >> mk/build.mk - # we just need to build the compiler... + # we just need to build the compiler and utils... (cd glafp-utils && make boot && make) (cd ghc && make boot) + (cd ghc/utils && make) (cd ghc/compiler && make stage=1) cd .. -- 1.7.10.4