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