blob: ce947c22da8153901e6cf8c32938a0c2589beba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# -*- makefile-gmake -*-
#
# This is a build conf for bootstrapping compilers.
#
# We don't want any docs.
HADDOCK_DOCS = NO
BUILD_MAN = NO
BUILD_SPHINX_HTML = NO
BUILD_SPHINX_PDF = NO
# We only want vanilla libraries and rts. No profiling, no shared
# libraries, no debugging, no event logging.
GhcLibWays = v
GhcRTSWays =
# I'm not sure disabling GHCi significantly reduces the bindist size,
# but we don't need it anyway.
GhcWithInterpreter = NO
# We don't want in-tree GMP to be statically linked as it increases
# the bindist size. Dynamic linkage is even worse.
BIGNUM_BACKEND = native
# We'd like to distinguish bootstrapping bindists from normal ones.
BIN_DIST_NAME = ghc-$(ProjectVersion)-boot
# Don't build or use dynamic Haskell libraries.
DYNAMIC_GHC_PROGRAMS = NO
# The build system attempts to link GHC with threaded event-logging RTS by
# default, which fails because we only build "vanilla" RTS.
ghc_stage1_CONFIGURE_OPTS += -f-threaded -f-eventlog
ghc_stage2_CONFIGURE_OPTS += -f-threaded -f-eventlog
ghc_stage3_CONFIGURE_OPTS += -f-threaded -f-eventlog
# We want our bootkits to be as small as possible, even though `xz
# -9e' is very slow and consumes about 680 MiB of memory.
TAR_COMP = xz
TAR_COMP_CMD = $(XZ_CMD) $(TAR_COMP_OPTS)
TAR_COMP_EXT = xz
TAR_COMP_OPTS = --verbose -9 --extreme
|