[project @ 2000-10-27 16:24:31 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.100 2000/10/27 16:24:31 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, LIBRARY
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)
22 else
23 HS_PROG=ghc
24 endif
25
26 # -----------------------------------------------------------------------------
27 # Create compiler configuration
28
29 CURRENT_DIR=ghc/compiler
30 CONFIG_HS = main/Config.hs
31 boot :: $(CONFIG_HS)
32
33 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
34         @$(RM) -f $(CONFIG_HS)
35         @echo -n "Creating $(CONFIG_HS) ... "
36         @echo "module Config where" >>$(CONFIG_HS)
37         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
38         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
39         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
40         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
41         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
42         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
43         @echo "cCURRENT_DIR          = \"$(CURRENT_DIR)\"" >> $(CONFIG_HS)
44         @echo "cGHC_LIB_DIR          = \"$(GHC_LIB_DIR)\"" >> $(CONFIG_HS)
45         @echo "cGHC_RUNTIME_DIR      = \"$(GHC_RUNTIME_DIR)\"" >> $(CONFIG_HS)
46         @echo "cGHC_UTILS_DIR        = \"$(GHC_UTILS_DIR)\"" >> $(CONFIG_HS)
47         @echo "cGHC_INCLUDE_DIR      = \"$(GHC_INCLUDE_DIR)\"" >> $(CONFIG_HS)
48         @echo "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> $(CONFIG_HS)
49         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
50         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
51         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
52         @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> $(CONFIG_HS)
53         @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> $(CONFIG_HS)
54         @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> $(CONFIG_HS)
55         @echo "cGHC_STATS            = \"$(GHC_STATS)\"" >> $(CONFIG_HS)
56         @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
57         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
58         @echo "cCP                   = \"$(CP)\"" >> $(CONFIG_HS)
59         @echo "cRM                   = \"$(RM)\"" >> $(CONFIG_HS)
60         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
61         @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> $(CONFIG_HS)
62         @echo "cGhcWithRegisterised  = \"$(GhcWithRegisterised)\"" >> $(CONFIG_HS)
63         @echo "cUSER_WAY_NAMES       = \"$(USER_WAY_NAMES)\"" >> $(CONFIG_HS)
64         @echo "cUSER_WAY_OPTS        = \"$(USER_WAY_OPTS)\"" >> $(CONFIG_HS)
65         @echo "clibdir               = \"$(libdir)\"" >> $(CONFIG_HS)
66         @echo "clibexecdir           = \"$(libexecdir)\"" >> $(CONFIG_HS)
67         @echo "cdatadir              = \"$(datadir)\"" >> $(CONFIG_HS)
68         @echo "cbindir               = \"$(bindir)\"" >> $(CONFIG_HS)
69         @echo "cDEFAULT_TMPDIR       = \"$(DEFAULT_TMPDIR)\"" >> $(CONFIG_HS)
70         @echo "cFPTOOLS_TOP_ABS      = \"$(FPTOOLS_TOP_ABS)\"" >> $(CONFIG_HS)
71         @echo "cRAWCPP               = \"$(RAWCPP)\"" >> $(CONFIG_HS)
72         @echo done.
73
74 CLEAN_FILES += $(CONFIG_HS)
75
76 # -----------------------------------------------------------------------------
77 #               Compilation history for Patrick
78
79 # Make the sources first, because that's what the compilation history needs
80 $(HS_PROG) :: $(HS_SRCS)
81
82
83 # -----------------------------------------------------------------------------
84 #               Set SRCS, LOOPS, HCS, OBJS
85 #
86 # First figure out DIRS, the source sub-directories
87 # Then derive SRCS by looking in them
88 #
89
90 DIRS = \
91   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
92   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
93   profiling parser usageSP cprAnalysis javaGen ghci
94
95
96 ifeq ($(GhcWithNativeCodeGen),YES)
97 DIRS += nativeGen
98 else
99 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
100 ifeq ($(GhcWithIlx),YES)
101 DIRS += ilxGen
102 SRC_HC_OPTS += -DILX
103 endif
104 endif
105
106
107 HS_SRCS = $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
108
109 # ToDo: not clear why this is here -- messes up linking
110 #ifneq "$(GhcWithHscBuiltViaC)" "YES"
111 #HS_SRCS += rename/ParseIface.hs parser/Parser.hs
112 #endif
113
114 HCS      = $(patsubst %.lhs, %.hc, $(patsubst %.hs, %.hc, $(HS_SRCS)))
115
116 # ParseIface.hs ain't part of HS_SRCS when this is on..
117 ifeq "$(GhcWithHscBuiltViaC)" "YES"
118 HCS      += rename/ParseIface.hc parser/Parser.hc
119 endif
120
121 HS_OBJS  = \
122   $(patsubst %.hc, %.o, $(HCS)) \
123   parser/hschooks.o
124
125
126 DESTDIR       = $(INSTALL_LIBRARY_DIR_GHC)
127
128 #
129 # Add misc .c helper code (used by the frontend.)
130 #
131 C_SRCS += parser/hschooks.c
132
133 #
134 # Big Fudge to get around inherent problem that Makefile setup
135 # has got with 'mkdependC'.
136
137 SRC_MKDEPENDC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt)
138
139 # stuff you get for free in a source distribution
140
141 # SRC_DIST_FILES += rename/ParseIface.hs rename/Parser.hs
142
143 # -----------------------------------------------------------------------------
144 #               Haskell compilations
145
146 #
147 # Compiler to use for building ghc, use the build tree
148 # driver when booting.
149 #
150 ifneq "$(GhcWithHscBuiltViaC)" "YES"
151 HC=$(WithGhcHc)
152 else
153 HC=$(GHC_INPLACE)
154 endif
155
156 # magic from GNU make manual to convert a list of values
157 # into a colon-separated list
158 empty:=
159 space:= $(empty) $(empty)
160
161 SRC_HC_OPTS += \
162   -cpp -fglasgow-exts \
163   -Rghc-timing -I. -IcodeGen -InativeGen -Iparser \
164   -i$(subst $(space),:,$(DIRS)) 
165
166 ghc_407_at_least = $(shell expr "$(GhcMinVersion)" \>= 7)
167 ifeq "$(ghc_407_at_least)" "1"
168 ifneq "$(mingw32_TARGET_OS)" "1"
169 SRC_HC_OPTS += -package concurrent -package posix -package text
170 else
171 SRC_HC_OPTS += -package concurrent -package text
172 endif
173 else
174 SRC_HC_OPTS += -syslib concurrent -syslib posix -syslib misc
175 endif
176
177 SRC_CC_OPTS += -Iparser -I. -I$(TOP)/includes -O
178
179 SRC_HC_OPTS += -recomp $(GhcHcOpts)
180
181 #       Special flags for particular modules
182 #       The standard suffix rule for compiling a Haskell file
183 #       adds these flags to the command line
184
185 # Was 6m with 2.10
186 absCSyn/PprAbsC_HC_OPTS         = -H10m
187
188 basicTypes/IdInfo_HC_OPTS       = -K2m
189 codeGen/CgCase_HC_OPTS          = -fno-prune-tydecls
190 hsSyn/HsExpr_HC_OPTS            = -K2m
191 main/Main_HC_OPTS               = 
192
193 ifneq "$(GhcWithHscBuiltViaC)" "YES"
194 ifeq "$(GhcReportCompiles)" "YES"
195 main/Main_HC_OPTS               += -syslib misc -DREPORT_TO_MOTHERLODE
196 endif
197 endif
198
199 main/CmdLineOpts_HC_OPTS        = -K6m
200 nativeGen/PprMach_HC_OPTS       = -K2m
201 nativeGen/MachMisc_HC_OPTS      = -K2m 
202 nativeGen/MachCode_HC_OPTS      = -H10m
203
204 # Avoids Bug in 3.02, it seems
205 usageSP/UsageSPInf_HC_OPTS      = -Onot
206
207 prelude/PrimOp_HC_OPTS          = -H12m -K3m
208
209 # because the NCG can't handle the 64-bit math in here
210 prelude/PrelRules_HC_OPTS       = -fvia-C
211
212 parser/Lex_HC_OPTS              = -K2m -H16m 
213 parser/Ctype_HC_OPTS            = -K2m
214
215 rename/ParseIface_HC_OPTS       += -Onot -H45m -K2m -fno-warn-incomplete-patterns
216
217 parser/Parser_HC_OPTS           += -Onot -H80m -optCrts-M80m -K2m -fno-warn-incomplete-patterns
218
219 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
220 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
221 endif
222
223 rename/RnEnv_HC_OPTS            = 
224 rename/RnSource_HC_OPTS         = -H12m
225 rename/RnIfaces_HC_OPTS         = -H8m 
226 rename/RnExpr_HC_OPTS           = -H10m
227 rename/RnNames_HC_OPTS          = -H12m
228 rename/RnMonad_HC_OPTS          = 
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/SST_HC_OPTS               = 
255 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
256 utils/Digraph_HC_OPTS           = -fglasgow-exts 
257 utils/DirUtils_HC_OPTS          = 
258
259 # temporary, due to bug in NCG (x86 spiller fails because a basic block
260 # contains both multiply and divide insns, probably soaking up all spill
261 # regs) (SDM, 1/6/2000), augmented by JRS 27 Oct 00.
262 utils/FastString_HC_OPTS        = -fvia-C
263
264 ifeq "$(alpha_HOST_ARCH)" "1"
265 # "stbu" bug in alpha native code generator...
266 basicTypes/Unique_HC_OPTS       = 
267 endif
268
269 # flags for PrimPacked:
270 #
271 # -monly-3-regs 
272 #       because it contains a 'ccall strlen', which gets inlined by
273 #       gcc, causing a lack of registers.
274 #
275 # -optC-funfolding-interface-threshold7
276 #       To stop the definition of 'strLength', which calls strlen, getting
277 #       into the interface file and spreading the -monly-3-regs virus.
278 #       We need -optC here because the driver before 3.02 didn't understand
279 #       the -funfolding flags.
280
281 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -optC-funfolding-interface-threshold7
282
283 # Strictness analyser misbehaving in 2.10, fails to terminate on
284 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
285 # separate bugfix to the fixpoint finder.
286 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
287
288 stgSyn/StgInterp_HC_OPTS        = -fvia-C
289
290 # ----------------------------------------------------------------------------
291 #               C compilations
292
293 SRC_C_OPTS     += -O -I. -IcodeGen
294
295
296 # ----------------------------------------------------------------------------
297 #               Generate supporting stuff for prelude/PrimOp.lhs 
298 #               from prelude/primops.txt
299
300 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
301
302 PRIMOP_BITS=primop-data-decl.hs-incl \
303             primop-tag.hs-incl  \
304             primop-list.hs-incl  \
305             primop-has-side-effects.hs-incl  \
306             primop-out-of-line.hs-incl  \
307             primop-commutable.hs-incl  \
308             primop-needs-wrapper.hs-incl  \
309             primop-can-fail.hs-incl  \
310             primop-strictness.hs-incl  \
311             primop-usage.hs-incl  \
312             primop-primop-info.hs-incl
313
314 prelude/PrimOp.o: $(PRIMOP_BITS)
315
316 depend :: $(PRIMOP_BITS)
317
318 primop-data-decl.hs-incl: prelude/primops.txt
319         $(GENPOC) --data-decl          < $< > $@
320 primop-tag.hs-incl: prelude/primops.txt
321         $(GENPOC) --primop-tag         < $< > $@
322 primop-list.hs-incl: prelude/primops.txt
323         $(GENPOC) --primop-list        < $< > $@
324 primop-has-side-effects.hs-incl: prelude/primops.txt
325         $(GENPOC) --has-side-effects   < $< > $@
326 primop-out-of-line.hs-incl: prelude/primops.txt
327         $(GENPOC) --out-of-line        < $< > $@
328 primop-commutable.hs-incl: prelude/primops.txt
329         $(GENPOC) --commutable         < $< > $@
330 primop-needs-wrapper.hs-incl: prelude/primops.txt
331         $(GENPOC) --needs-wrapper      < $< > $@
332 primop-can-fail.hs-incl: prelude/primops.txt
333         $(GENPOC) --can-fail           < $< > $@
334 primop-strictness.hs-incl: prelude/primops.txt
335         $(GENPOC) --strictness         < $< > $@
336 primop-usage.hs-incl: prelude/primops.txt
337         $(GENPOC) --usage              < $< > $@
338 primop-primop-info.hs-incl: prelude/primops.txt
339         $(GENPOC) --primop-primop-info < $< > $@
340
341
342
343 # ----------------------------------------------------------------------------
344 #               Parsers/lexers
345
346 parser/hschooks.o : parser/hschooks.c
347         @$(RM) $@
348         $(HC) -c -o $@ $(HC_OPTS) parser/hschooks.c
349
350
351 # Interface-file parser uses Happy
352 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
353
354 rename/ParseIface.hs : rename/ParseIface.y
355         @$(RM) rename/ParseIface.hs rename/ParseIface.hinfo
356         $(HAPPY) $(HAPPY_OPTS) rename/ParseIface.y
357         @chmod 444 rename/ParseIface.hs
358
359 parser/Parser.hs : parser/Parser.y
360         @$(RM) parser/Parser.hs parser/ParseIface.hinfo
361         $(HAPPY) $(HAPPY_OPTS) parser/Parser.y
362         @chmod 444 parser/Parser.hs
363
364 #-----------------------------------------------------------------------------
365 #               Linking
366
367 SRC_LD_OPTS += -no-link-chk -ldl
368
369 ifneq "$(GhcWithHscBuiltViaC)" "YES"
370 ifeq "$(GhcReportCompiles)" "YES"
371 SRC_LD_OPTS += -syslib misc -syslib exts
372 endif
373 endif
374
375 # -----------------------------------------------------------------------------
376 # create ghc-inplace, a convenient way to run ghc from the build tree...
377
378 all :: ghc-inplace
379
380 ghc-inplace : ghc
381         @$(RM) $@
382         echo '#!/bin/sh' >>$@
383         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/ghc -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
384         chmod 755 $@
385
386 CLEAN_FILES += ghc-inplace
387
388 #-----------------------------------------------------------------------------
389 #               install
390
391 # We don't want ghc treated as an ordinary executable,
392 # but put it together with the libraries.
393 # Also don't want any interface files intstalled
394
395 INSTALL_PROGS += $(HS_PROG)
396
397 #-----------------------------------------------------------------------------
398 #               depend
399
400 #
401 # Before doing `make depend', need to build all derived Haskell source files
402 #
403 depend :: $(LOOPS)
404
405 ifneq "$(GhcWithHscBuiltViaC)" "YES"
406 depend :: rename/ParseIface.hs
407 endif
408
409 #-----------------------------------------------------------------------------
410 #               clean
411
412 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
413 CLEAN_FILES += $(PRIMOP_BITS)
414
415 # Extra tidy, remove the .hc files (if you've got them).
416 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
417         parser/Parser.hs rename/ParseIface.hs
418
419
420 #-----------------------------------------------------------------------------
421 #               TAGS setup
422
423 SRC_HSTAGS_OPTS += -fglasgow-exts -cpp
424 TAGS_HS_SRCS=$(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
425 TAGS_C_SRCS=$(strip $(foreach f,$(foreach dir,$(DIRS),$(wildcard $(dir)/*.c)),$(shell if [ -w $(f) ]; then echo $(f); else echo ''; fi)))
426
427 #-----------------------------------------------------------------------------
428 #               Include target-rule boilerplate
429
430 include $(TOP)/mk/target.mk
431
432 parser/%.o : parser/%.c
433