e21bb332c94b9e9c2b6f9e50bd2e23c85c2ffe24
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.134 2001/02/11 17:01:46 simonmar Exp $
3
4 TOP = ..
5 include $(TOP)/mk/boilerplate.mk
6
7 #-----------------------------------------------------------------------------
8 # Building ghc different ways (default is just `normal' sequential)
9 WAYS=$(GhcCompilerWays)
10
11 # -----------------------------------------------------------------------------
12 #               Set HS_PROG
13
14 # Note: there have been reports of people running up against the ARG_MAX limit
15 # when linking ghc with all its constituent object files. The likely source of 
16 # the problem is that the environment is a bit too big, so a workaround could
17 # be to do ` env PATH=$(PATH) make ghc 'to minimise the environment. (or the
18 # equivalent of `env' if it doesn't exist locally).
19 #
20 ifneq "$(way)" "dll"
21 HS_PROG=ghc$(_way)-$(ProjectVersion)
22 else
23 HS_PROG=ghc-$(ProjectVersion)
24 endif
25
26 LINK = ghc
27
28 # -----------------------------------------------------------------------------
29 # Create compiler configuration
30
31 CURRENT_DIR     = ghc/compiler
32 CONFIG_HS       = main/Config.hs
33 boot :: $(CONFIG_HS)
34
35 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
36         @$(RM) -f $(CONFIG_HS)
37         @echo -n "Creating $(CONFIG_HS) ... "
38         @echo "module Config where" >>$(CONFIG_HS)
39         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
40         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
41         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
42         @echo "cBooterVersion        = \"$(GhcVersion)\"" >> $(CONFIG_HS)
43         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
44         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
45         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
46         @echo "cCURRENT_DIR          = \"$(CURRENT_DIR)\"" >> $(CONFIG_HS)
47         @echo "cGHC_LIB_DIR          = \"$(GHC_LIB_DIR)\"" >> $(CONFIG_HS)
48         @echo "cGHC_RUNTIME_DIR      = \"$(GHC_RUNTIME_DIR)\"" >> $(CONFIG_HS)
49         @echo "cGHC_UTILS_DIR        = \"$(GHC_UTILS_DIR)\"" >> $(CONFIG_HS)
50         @echo "cGHC_INCLUDE_DIR      = \"$(GHC_INCLUDE_DIR)\"" >> $(CONFIG_HS)
51         @echo "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> $(CONFIG_HS)
52         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
53         @echo "cMkDLL                = \"$(BLD_DLL)\"" >> $(CONFIG_HS)
54         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
55         @echo "cGhcUnregisterised    = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS)
56         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
57         @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> $(CONFIG_HS)
58         @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> $(CONFIG_HS)
59         @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> $(CONFIG_HS)
60         @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
61         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
62         @echo "cCP                   = \"$(CP)\"" >> $(CONFIG_HS)
63         @echo "cRM                   = \"$(RM)\"" >> $(CONFIG_HS)
64         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
65         @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> $(CONFIG_HS)
66         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
67         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
68         @echo "clibdir               = \"$(libdir)\"" >> $(CONFIG_HS)
69         @echo "clibexecdir           = \"$(libexecdir)\"" >> $(CONFIG_HS)
70         @echo "cdatadir              = \"$(datadir)\"" >> $(CONFIG_HS)
71         @echo "cbindir               = \"$(bindir)\"" >> $(CONFIG_HS)
72         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
73         @echo "cFPTOOLS_TOP_ABS      = \"$(FPTOOLS_TOP_ABS)\"" >> $(CONFIG_HS)
74         @echo "cRAWCPP               = \"$(RAWCPP)\"" >> $(CONFIG_HS)
75         @echo done.
76
77 CLEAN_FILES += $(CONFIG_HS)
78
79 # -----------------------------------------------------------------------------
80 #               Set SRCS, HCS, OBJS
81 #
82 # First figure out DIRS, the source sub-directories
83 # Then derive SRCS by looking in them
84 #
85
86 DIRS = \
87   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
88   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
89   profiling parser usageSP cprAnalysis javaGen compMan
90
91 ifeq ($(GhcWithNativeCodeGen),YES)
92 DIRS += nativeGen
93 else
94 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
95 ifeq ($(GhcWithIlx),YES)
96 DIRS += ilxGen
97 SRC_HC_OPTS += -DILX
98 endif
99 endif
100
101 ghc_411_at_least = $(shell expr "$(GhcMinVersion)" \>= 11)
102
103 # Only include GHCi if we're bootstrapping with at least version 411
104 ifeq "$(GhcWithInterpreter)" "YES"
105 ifeq "$(ghc_411_at_least)" "1"
106 SRC_HC_OPTS += -DGHCI -optc-DGHCI
107 DIRS += ghci
108 endif
109 endif
110
111 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
112 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs, $(HS_SRCS))
113
114 ifneq "$(GhcWithHscBuiltViaC)" "YES"
115 HS_SRCS += rename/ParseIface.hs parser/Parser.hs
116 endif
117
118 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
119
120 ifeq "$(GhcWithHscBuiltViaC)" "YES"
121 HCS     += rename/ParseIface.hc parser/Parser.hc
122 endif
123
124 HS_OBJS  = \
125   $(patsubst %.hc, %.o, $(HCS)) \
126   parser/hschooks.o
127
128 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
129
130 #
131 # Add misc .c helper code (used by the frontend.)
132 #
133 C_SRCS += parser/hschooks.c
134
135 #
136 # Big Fudge to get around inherent problem that Makefile setup
137 # has got with 'mkdependC'.
138
139 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
140
141 # -----------------------------------------------------------------------------
142 #               Haskell compilations
143
144 #
145 # Compiler to use for building ghc, use the build tree
146 # driver when booting.
147 #
148 ifneq "$(GhcWithHscBuiltViaC)" "YES"
149 HC=$(GHC)
150 else
151 HC=$(GHC_INPLACE)
152 endif
153
154 #
155 # Use GHC for compiling C bits
156 #
157 CC = $(HC)
158
159 # magic from GNU make manual to convert a list of values
160 # into a colon-separated list
161 empty:=
162 space:= $(empty) $(empty)
163
164 SRC_HC_OPTS += \
165   -cpp -fglasgow-exts -Rghc-timing \
166   -I. -IcodeGen -InativeGen -Iparser \
167   -i$(subst $(space),:,$(DIRS)) 
168
169 ghc_407_at_least = $(shell expr "$(GhcMinVersion)" \>= 7)
170 ifeq "$(ghc_407_at_least)" "1"
171 ifneq "$(mingw32_TARGET_OS)" "1"
172 SRC_HC_OPTS += -package concurrent -package posix -package text -package util
173 else
174 SRC_HC_OPTS += -package concurrent -package text -package util
175 endif
176 else
177 SRC_HC_OPTS += -syslib concurrent -syslib posix -syslib misc -syslib util
178 endif
179
180 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
181
182 SRC_HC_OPTS += -recomp $(GhcHcOpts)
183
184 #       Special flags for particular modules
185 #       The standard suffix rule for compiling a Haskell file
186 #       adds these flags to the command line
187
188 # Was 6m with 2.10
189 absCSyn/PprAbsC_HC_OPTS         = -H10m
190
191 codeGen/CgCase_HC_OPTS          = -fno-prune-tydecls
192 main/Main_HC_OPTS               = -fvia-C
193
194 ifneq "$(GhcWithHscBuiltViaC)" "YES"
195 ifeq "$(GhcReportCompiles)" "YES"
196 main/Main_HC_OPTS               += -syslib misc -DREPORT_TO_MOTHERLODE
197 endif
198 endif
199
200 nativeGen/MachCode_HC_OPTS      = -H10m
201
202 # Avoids Bug in 3.02, it seems
203 usageSP/UsageSPInf_HC_OPTS      = -Onot
204
205 prelude/PrimOp_HC_OPTS          = -H12m -no-recomp
206
207 # because the NCG can't handle the 64-bit math in here
208 prelude/PrelRules_HC_OPTS       = -fvia-C
209
210 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
211
212 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
213
214 # The latest GHC version doesn't have a -K option yet, and it doesn't
215 # seem to be necessary anymore for the modules below.
216 ifeq "$(ghc_411_at_least)" "0"
217 rename/ParseIface_HC_OPTS       += -K2m
218 parser/Parser_HC_OPTS           += -K2m
219 endif
220
221 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
222 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
223 endif
224
225 rename/RnSource_HC_OPTS         = -H12m
226 rename/RnIfaces_HC_OPTS         = -H8m 
227 rename/RnExpr_HC_OPTS           = -H10m
228 rename/RnNames_HC_OPTS          = -H12m
229 specialise/Specialise_HC_OPTS   = -Onot -H12m
230 simplCore/Simplify_HC_OPTS      = -H15m 
231 simplCore/OccurAnal_HC_OPTS     = -H10m
232 typecheck/TcGenDeriv_HC_OPTS    = -H10m
233
234 # tmp, -- SDM
235 specialise/Specialise_HC_OPTS   += -fno-prune-tydecls
236 hsSyn/HsBasic_HC_OPTS           += -fno-prune-tydecls
237 simplCore/SimplMonad_HC_OPTS    += -fno-prune-tydecls
238 absCSyn/AbsCSyn_HC_OPTS         += -fno-prune-tydecls
239 absCSyn/AbsCUtils_HC_OPTS       += -fno-prune-tydecls
240 codeGen/CgBindery_HC_OPTS       += -fno-prune-tydecls
241 codeGen/CgLetNoEscape_HC_OPTS   += -fno-prune-tydecls
242 codeGen/CgExpr_HC_OPTS          += -fno-prune-tydecls
243 nativeGen/AbsCStixGen_HC_OPTS   += -fno-prune-tydecls
244
245 # Was 10m for 2.10
246 typecheck/TcHsSyn_HC_OPTS       = -H15m 
247
248
249 # Was 10m for 2.10
250 typecheck/TcExpr_HC_OPTS        = -H15m
251 typecheck/TcBinds_HC_OPTS       = -H10m
252
253 typecheck/TcEnv_HC_OPTS         = -H10m
254 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
255 utils/Digraph_HC_OPTS           = -fglasgow-exts 
256
257 # temporary, due to bug in NCG (x86 spiller fails because a basic block
258 # contains both multiply and divide insns, probably soaking up all spill
259 # regs) (SDM, 1/6/2000), augmented by JRS 27 Oct 00.
260 utils/FastString_HC_OPTS        = -fvia-C
261
262 # flags for PrimPacked:
263 #
264 # -monly-3-regs 
265 #       because it contains a 'ccall strlen', which gets inlined by
266 #       gcc, causing a lack of registers.
267 #
268 # -optC-funfolding-interface-threshold7
269 #       To stop the definition of 'strLength', which calls strlen, getting
270 #       into the interface file and spreading the -monly-3-regs virus.
271 #       We need -optC here because the driver before 3.02 didn't understand
272 #       the -funfolding flags.
273
274 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -funfolding-interface-threshold7
275
276 # Strictness analyser misbehaving in 2.10, fails to terminate on
277 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
278 # separate bugfix to the fixpoint finder.
279 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
280
281 ghci/StgInterp_HC_OPTS          = -fvia-C
282
283 # ----------------------------------------------------------------------------
284 #               C compilations
285
286 SRC_C_OPTS     += -O -I. -IcodeGen
287
288
289 # ----------------------------------------------------------------------------
290 #               Generate supporting stuff for prelude/PrimOp.lhs 
291 #               from prelude/primops.txt
292
293 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
294
295 PRIMOP_BITS=primop-data-decl.hs-incl \
296             primop-tag.hs-incl  \
297             primop-list.hs-incl  \
298             primop-has-side-effects.hs-incl  \
299             primop-out-of-line.hs-incl  \
300             primop-commutable.hs-incl  \
301             primop-needs-wrapper.hs-incl  \
302             primop-can-fail.hs-incl  \
303             primop-strictness.hs-incl  \
304             primop-usage.hs-incl  \
305             primop-primop-info.hs-incl
306
307 prelude/PrimOp.o: $(PRIMOP_BITS)
308
309 depend :: $(PRIMOP_BITS)
310
311 primop-data-decl.hs-incl: prelude/primops.txt
312         $(GENPOC) --data-decl          < $< > $@
313 primop-tag.hs-incl: prelude/primops.txt
314         $(GENPOC) --primop-tag         < $< > $@
315 primop-list.hs-incl: prelude/primops.txt
316         $(GENPOC) --primop-list        < $< > $@
317 primop-has-side-effects.hs-incl: prelude/primops.txt
318         $(GENPOC) --has-side-effects   < $< > $@
319 primop-out-of-line.hs-incl: prelude/primops.txt
320         $(GENPOC) --out-of-line        < $< > $@
321 primop-commutable.hs-incl: prelude/primops.txt
322         $(GENPOC) --commutable         < $< > $@
323 primop-needs-wrapper.hs-incl: prelude/primops.txt
324         $(GENPOC) --needs-wrapper      < $< > $@
325 primop-can-fail.hs-incl: prelude/primops.txt
326         $(GENPOC) --can-fail           < $< > $@
327 primop-strictness.hs-incl: prelude/primops.txt
328         $(GENPOC) --strictness         < $< > $@
329 primop-usage.hs-incl: prelude/primops.txt
330         $(GENPOC) --usage              < $< > $@
331 primop-primop-info.hs-incl: prelude/primops.txt
332         $(GENPOC) --primop-primop-info < $< > $@
333
334
335
336 # ----------------------------------------------------------------------------
337 #               Parsers/lexers
338
339 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
340
341 #-----------------------------------------------------------------------------
342 #               Linking
343
344 SRC_LD_OPTS += -no-link-chk 
345
346 ifneq "$(GhcWithHscBuiltViaC)" "YES"
347 ifeq "$(GhcReportCompiles)" "YES"
348 SRC_LD_OPTS += -syslib misc -syslib exts
349 endif
350 endif
351
352 # -----------------------------------------------------------------------------
353 # create ghc-inplace, a convenient way to run ghc from the build tree...
354
355 all :: ghc-inplace
356
357 ghc-inplace : ghc
358         @$(RM) $@
359         echo '#!/bin/sh' >>$@
360         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/ghc -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
361         chmod 755 $@
362
363 CLEAN_FILES += ghc-inplace
364
365 #-----------------------------------------------------------------------------
366 #               install
367
368 # We don't want ghc treated as an ordinary executable,
369 # but put it together with the libraries.
370 # Also don't want any interface files intstalled
371
372 INSTALL_PROGS += $(HS_PROG)
373
374 #-----------------------------------------------------------------------------
375 #               clean
376
377 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
378 CLEAN_FILES += $(PRIMOP_BITS)
379
380 # Extra tidy, remove the .hc files (if you've got them).
381 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
382         parser/Parser.info rename/ParseIface.info \
383         parser/Parser.hs rename/ParseIface.hs
384
385 #-----------------------------------------------------------------------------
386 #               Include target-rule boilerplate
387
388 include $(TOP)/mk/target.mk