[project @ 2000-12-19 12:27:09 by simonmar]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.120 2000/12/19 12:27: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
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 #               Set SRCS, HCS, OBJS
80 #
81 # First figure out DIRS, the source sub-directories
82 # Then derive SRCS by looking in them
83 #
84
85 DIRS = \
86   utils basicTypes types hsSyn prelude rename typecheck deSugar coreSyn \
87   specialise simplCore stranal stgSyn simplStg codeGen absCSyn main \
88   profiling parser usageSP cprAnalysis javaGen compMan
89
90 ifeq ($(GhcWithNativeCodeGen),YES)
91 DIRS += nativeGen
92 else
93 SRC_HC_OPTS += -DOMIT_NATIVE_CODEGEN
94 ifeq ($(GhcWithIlx),YES)
95 DIRS += ilxGen
96 SRC_HC_OPTS += -DILX
97 endif
98 endif
99
100 # Only include GHCi if we're bootstrapping with at least version 409
101 ifeq "$(GhcWithInterpreter)" "YES"
102 ghc_409_at_least = $(shell expr "$(GhcMinVersion)" \>= 9)
103 ifeq "$(ghc_409_at_least)" "1"
104 SRC_HC_OPTS += -DGHCI -optc-DGHCI
105 DIRS += ghci
106 endif
107 endif
108
109 HS_SRCS := $(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs) $(wildcard $(dir)/*.hs))
110 HS_SRCS := $(filter-out rename/ParseIface.hs parser/Parser.hs, $(HS_SRCS))
111
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 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   parser/hs_ctype.o
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 # -----------------------------------------------------------------------------
141 #               Haskell compilations
142
143 #
144 # Compiler to use for building ghc, use the build tree
145 # driver when booting.
146 #
147 ifneq "$(GhcWithHscBuiltViaC)" "YES"
148 HC=$(GHC)
149 else
150 HC=$(GHC_INPLACE)
151 endif
152
153 #
154 # Use GHC for compiling C bits
155 #
156 CC = $(HC)
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   -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 -package util
172 else
173 SRC_HC_OPTS += -package concurrent -package text -package util
174 endif
175 else
176 SRC_HC_OPTS += -syslib concurrent -syslib posix -syslib misc -syslib util
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 codeGen/CgCase_HC_OPTS          = -fno-prune-tydecls
191 main/Main_HC_OPTS               = -fvia-C
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 nativeGen/MachCode_HC_OPTS      = -H10m
200
201 # Avoids Bug in 3.02, it seems
202 usageSP/UsageSPInf_HC_OPTS      = -Onot
203
204 prelude/PrimOp_HC_OPTS          = -H12m -no-recomp
205
206 # because the NCG can't handle the 64-bit math in here
207 prelude/PrelRules_HC_OPTS       = -fvia-C
208
209 rename/ParseIface_HC_OPTS       += -Onot -H45m -fno-warn-incomplete-patterns
210
211 parser/Parser_HC_OPTS           += -Onot -fno-warn-incomplete-patterns
212
213 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
214 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
215 endif
216
217 rename/RnEnv_HC_OPTS            = 
218 rename/RnSource_HC_OPTS         = -H12m
219 rename/RnIfaces_HC_OPTS         = -H8m 
220 rename/RnExpr_HC_OPTS           = -H10m
221 rename/RnNames_HC_OPTS          = -H12m
222 rename/RnMonad_HC_OPTS          = 
223 specialise/Specialise_HC_OPTS   = -Onot -H12m
224 simplCore/Simplify_HC_OPTS      = -H15m 
225 simplCore/OccurAnal_HC_OPTS     = -H10m
226 typecheck/TcGenDeriv_HC_OPTS    = -H10m
227
228 # tmp, -- SDM
229 specialise/Specialise_HC_OPTS   += -fno-prune-tydecls
230 hsSyn/HsBasic_HC_OPTS           += -fno-prune-tydecls
231 simplCore/SimplMonad_HC_OPTS    += -fno-prune-tydecls
232 absCSyn/AbsCSyn_HC_OPTS         += -fno-prune-tydecls
233 absCSyn/AbsCUtils_HC_OPTS       += -fno-prune-tydecls
234 codeGen/CgBindery_HC_OPTS       += -fno-prune-tydecls
235 codeGen/CgLetNoEscape_HC_OPTS   += -fno-prune-tydecls
236 codeGen/CgExpr_HC_OPTS          += -fno-prune-tydecls
237 nativeGen/AbsCStixGen_HC_OPTS   += -fno-prune-tydecls
238
239 # Was 10m for 2.10
240 typecheck/TcHsSyn_HC_OPTS       = -H15m 
241
242
243 # Was 10m for 2.10
244 typecheck/TcExpr_HC_OPTS        = -H15m
245 typecheck/TcBinds_HC_OPTS       = -H10m
246
247 typecheck/TcEnv_HC_OPTS         = -H10m
248 utils/SST_HC_OPTS               = 
249 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
250 utils/Digraph_HC_OPTS           = -fglasgow-exts 
251 utils/DirUtils_HC_OPTS          = 
252
253 # temporary, due to bug in NCG (x86 spiller fails because a basic block
254 # contains both multiply and divide insns, probably soaking up all spill
255 # regs) (SDM, 1/6/2000), augmented by JRS 27 Oct 00.
256 utils/FastString_HC_OPTS        = -fvia-C
257
258 ifeq "$(alpha_HOST_ARCH)" "1"
259 # "stbu" bug in alpha native code generator...
260 basicTypes/Unique_HC_OPTS       = 
261 endif
262
263 # flags for PrimPacked:
264 #
265 # -monly-3-regs 
266 #       because it contains a 'ccall strlen', which gets inlined by
267 #       gcc, causing a lack of registers.
268 #
269 # -optC-funfolding-interface-threshold7
270 #       To stop the definition of 'strLength', which calls strlen, getting
271 #       into the interface file and spreading the -monly-3-regs virus.
272 #       We need -optC here because the driver before 3.02 didn't understand
273 #       the -funfolding flags.
274
275 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -funfolding-interface-threshold7
276
277 # Strictness analyser misbehaving in 2.10, fails to terminate on
278 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
279 # separate bugfix to the fixpoint finder.
280 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
281
282 ghci/StgInterp_HC_OPTS          = -fvia-C
283
284 # ----------------------------------------------------------------------------
285 #               C compilations
286
287 SRC_C_OPTS     += -O -I. -IcodeGen
288
289
290 # ----------------------------------------------------------------------------
291 #               Generate supporting stuff for prelude/PrimOp.lhs 
292 #               from prelude/primops.txt
293
294 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
295
296 PRIMOP_BITS=primop-data-decl.hs-incl \
297             primop-tag.hs-incl  \
298             primop-list.hs-incl  \
299             primop-has-side-effects.hs-incl  \
300             primop-out-of-line.hs-incl  \
301             primop-commutable.hs-incl  \
302             primop-needs-wrapper.hs-incl  \
303             primop-can-fail.hs-incl  \
304             primop-strictness.hs-incl  \
305             primop-usage.hs-incl  \
306             primop-primop-info.hs-incl
307
308 prelude/PrimOp.o: $(PRIMOP_BITS)
309
310 depend :: $(PRIMOP_BITS)
311
312 primop-data-decl.hs-incl: prelude/primops.txt
313         $(GENPOC) --data-decl          < $< > $@
314 primop-tag.hs-incl: prelude/primops.txt
315         $(GENPOC) --primop-tag         < $< > $@
316 primop-list.hs-incl: prelude/primops.txt
317         $(GENPOC) --primop-list        < $< > $@
318 primop-has-side-effects.hs-incl: prelude/primops.txt
319         $(GENPOC) --has-side-effects   < $< > $@
320 primop-out-of-line.hs-incl: prelude/primops.txt
321         $(GENPOC) --out-of-line        < $< > $@
322 primop-commutable.hs-incl: prelude/primops.txt
323         $(GENPOC) --commutable         < $< > $@
324 primop-needs-wrapper.hs-incl: prelude/primops.txt
325         $(GENPOC) --needs-wrapper      < $< > $@
326 primop-can-fail.hs-incl: prelude/primops.txt
327         $(GENPOC) --can-fail           < $< > $@
328 primop-strictness.hs-incl: prelude/primops.txt
329         $(GENPOC) --strictness         < $< > $@
330 primop-usage.hs-incl: prelude/primops.txt
331         $(GENPOC) --usage              < $< > $@
332 primop-primop-info.hs-incl: prelude/primops.txt
333         $(GENPOC) --primop-primop-info < $< > $@
334
335
336
337 # ----------------------------------------------------------------------------
338 #               Parsers/lexers
339
340 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
341
342 #-----------------------------------------------------------------------------
343 #               Linking
344
345 SRC_LD_OPTS += -no-link-chk 
346
347 ifneq "$(GhcWithHscBuiltViaC)" "YES"
348 ifeq "$(GhcReportCompiles)" "YES"
349 SRC_LD_OPTS += -syslib misc -syslib exts
350 endif
351 endif
352
353 # -----------------------------------------------------------------------------
354 # create ghc-inplace, a convenient way to run ghc from the build tree...
355
356 all :: ghc-inplace
357
358 ghc-inplace : ghc
359         @$(RM) $@
360         echo '#!/bin/sh' >>$@
361         echo exec $(FPTOOLS_TOP_ABS)/ghc/compiler/ghc -B$(FPTOOLS_TOP_ABS) '"$$@"' >>$@
362         chmod 755 $@
363
364 CLEAN_FILES += ghc-inplace
365
366 # -----------------------------------------------------------------------------
367 # Create link to from ghc-x.xx to ghc...
368
369 all :: $(LINK)
370
371 $(LINK) : $(HS_PROG)
372         @if ( $(PERL) -e '$$fn="$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
373            echo "Creating a symbolic link from $(HS_PROG) to $(LINK)"; \
374            $(RM) $(LINK); \
375            $(LN_S) $(HS_PROG) $(LINK); \
376          else \
377            echo "Creating a symbolic link from $(HS_PROG) to $(LINK) failed: \`$(LINK)' already exists"; \
378            echo "Perhaps remove \`$(LINK)' manually?"; \
379            exit 1; \
380          fi;
381
382 CLEAN_FILES += $(LINK)
383
384 install ::
385         @if ( $(PERL) -e '$$fn="$(bindir)/$(LINK)"; exit ((! -f $$fn || -l $$fn) ? 0 : 1);' ); then \
386            echo "Creating a symbol link from $(HS_PROG) to $(LINK) in $(bindir)"; \
387            $(RM) $(bindir)/$(LINK); \
388            $(LN_S) $(HS_PROG) $(bindir)/$(LINK); \
389          else \
390            echo "Creating a symbol link from $(HS_PROG) to $(LINK) in $(bindir) failed: \`$(bindir)/$(LINK)' already exists"; \
391            echo "Perhaps remove \`$(bindir)/$(LINK)' manually?"; \
392            exit 1; \
393          fi;
394
395 #-----------------------------------------------------------------------------
396 #               install
397
398 # We don't want ghc treated as an ordinary executable,
399 # but put it together with the libraries.
400 # Also don't want any interface files intstalled
401
402 INSTALL_PROGS += $(HS_PROG)
403
404 #-----------------------------------------------------------------------------
405 #               clean
406
407 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
408 CLEAN_FILES += $(PRIMOP_BITS)
409
410 # Extra tidy, remove the .hc files (if you've got them).
411 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
412         parser/Parser.info rename/ParseIface.info \
413         parser/Parser.hs rename/ParseIface.hs
414
415 #-----------------------------------------------------------------------------
416 #               Include target-rule boilerplate
417
418 include $(TOP)/mk/target.mk