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