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