ff1291b39b9472816a32ab6890c4bc403c94949d
[ghc-hetmet.git] / distrib / hc-build
1 #!/bin/sh -e
2
3 # Manuel M. T. Chakravarty <chak@acm.org>, June 2000
4 # Updated for GHC 5.00, Simon Marlow, March 2001
5 # Updated for GHC 5.04.3, Urban Boquist, March 2003
6 #
7 # Script to build GHC from .hc files (must be run in the fptools/ root
8 # directory into which the source and .hc files must already have been
9 # unpacked).  All options are passed through to ./configure (especially
10 # useful with --prefix).
11
12 configopts="$*"         # e.g., --enable-hc-boot-unregisterised
13 PWD=`pwd`
14
15 # check for GNU make
16 #
17 MAKENAMES="gmake make no-make"
18 for make in $MAKENAMES; do
19   MAKE=$make
20   $make --version 2>&1 | grep "GNU Make" >/dev/null && break
21 done
22 if [ $MAKE = no-make ]; then
23   echo "Fatal error: Cannot find the GNU make utility"
24   exit 1
25 fi
26
27 # build configuration
28 #
29 cat >mk/build.mk <<END
30 # nothing!
31 END
32
33 # touch happy generated files; so that in non-bootstrapping mode for
34 # installation, no attempt is made to call happy
35 #
36 touch ghc/compiler/parser/Parser.hs
37 touch ghc/compiler/main/ParsePkgConf.hs
38 touch hslibs/hssource/HsParser.hs
39
40 echo "*** Building compiler..."
41 ./configure --enable-hc-boot $configopts
42
43 $MAKE -C glafp-utils boot all
44 $MAKE -C ghc boot
45 $MAKE -C libraries boot all
46 $MAKE -C hslibs boot all
47 $MAKE -C ghc all
48
49 MAKEFLAGS=
50
51 echo "*** Building libraries..."
52
53 # Reconfigure, using the newly-build ghc binary as our $(GHC), and
54 # with hc bootstrapping disabled.
55 HappyCmd="$PWD/distrib/fake-happy" ./configure --with-ghc="$PWD/ghc/compiler/ghc-inplace" $configopts
56
57 PRIMOP_BITS="primop-data-decl.hs-incl \
58             primop-tag.hs-incl  \
59             primop-list.hs-incl  \
60             primop-has-side-effects.hs-incl  \
61             primop-out-of-line.hs-incl  \
62             primop-commutable.hs-incl  \
63             primop-needs-wrapper.hs-incl  \
64             primop-can-fail.hs-incl  \
65             primop-strictness.hs-incl  \
66             primop-usage.hs-incl  \
67             primop-primop-info.hs-incl"
68
69 # The reconfigure step updates a few files, which can lead to
70 # unnecessary recompilations.  Touch a bunch of things here to avoid
71 # having to recompile stuff that we've already built.
72 (cd ghc/compiler; touch $PRIMOP_BITS parser/hschooks.o prelude/PrimOp.o main/Config.hs main/Config.o ghc-*)
73
74 # Remove the old libraries.  Don't use make clean, because we don't
75 # want to delete the .hs files generated from the .hsc files, because
76 # we don't have hsc2hs built yet.
77 find libraries hslibs | grep '\.\(o\|a\)' | xargs rm -f
78
79 # Do includes and RTS now
80 $MAKE -C ghc/includes boot && $MAKE -C ghc/includes all
81 $MAKE -C ghc/rts      boot && $MAKE -C ghc/rts      all
82
83 # Now build a new set of libraries
84 $MAKE -C libraries boot all
85 $MAKE -C hslibs  boot all
86
87 # Finally build all of ghc/utils
88 $MAKE -C ghc/utils clean && $MAKE -C ghc/utils boot all
89
90 # Avoid relinking the compiler during 'make install':
91 (cd ghc/compiler; touch parser/hschooks.o ghc-*)
92
93 # At this point, the tree should be safe to do 'make install' in.