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