[project @ 2000-10-27 09:39:35 by sewardj]
[ghc-hetmet.git] / ghc / compiler / Makefile
1 # -----------------------------------------------------------------------------
2 # $Id: Makefile,v 1.97 2000/10/27 09:39:35 sewardj Exp $
3
4 TOP = ..
5 include $(TOP)/mk/boilerplate.mk
6
7 #-----------------------------------------------------------------------------
8 # Building hsc 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 hsc 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 hsc 'to minimise the environment. (or the
18 # equivalent of `env' if it doesn't exist locally).
19 #
20 ifneq "$(way)" "dll"
21 HS_PROG=hsc$(_way)
22 else
23 HS_PROG=hsc
24 endif
25
26 # -----------------------------------------------------------------------------
27 # Create compiler configuration
28
29 CURRENT_DIR=ghc/compiler
30 CONFIG_HS = main/Config.hs
31 boot :: $(CONFIG_HS)
32
33 $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk Makefile
34         @$(RM) -f $(CONFIG_HS)
35         @echo -n "Creating $(CONFIG_HS) ... "
36         @echo "module Config where" >>$(CONFIG_HS)
37         @echo "cProjectName          = \"$(ProjectName)\"" >> $(CONFIG_HS)
38         @echo "cProjectVersion       = \"$(ProjectVersion)\"" >> $(CONFIG_HS)
39         @echo "cProjectVersionInt    = \"$(ProjectVersionInt)\"" >> $(CONFIG_HS)
40         @echo "cHscIfaceFileVersion  = \"$(HscIfaceFileVersion)\"" >> $(CONFIG_HS)
41         @echo "cHOSTPLATFORM         = \"$(HOSTPLATFORM)\"" >> $(CONFIG_HS)
42         @echo "cTARGETPLATFORM       = \"$(TARGETPLATFORM)\"" >> $(CONFIG_HS)
43         @echo "cCURRENT_DIR          = \"$(CURRENT_DIR)\"" >> $(CONFIG_HS)
44         @echo "cGHC_LIB_DIR          = \"$(GHC_LIB_DIR)\"" >> $(CONFIG_HS)
45         @echo "cGHC_RUNTIME_DIR      = \"$(GHC_RUNTIME_DIR)\"" >> $(CONFIG_HS)
46         @echo "cGHC_UTILS_DIR        = \"$(GHC_UTILS_DIR)\"" >> $(CONFIG_HS)
47         @echo "cGHC_INCLUDE_DIR      = \"$(GHC_INCLUDE_DIR)\"" >> $(CONFIG_HS)
48         @echo "cGHC_DRIVER_DIR       = \"$(GHC_DRIVER_DIR)\"" >> $(CONFIG_HS)
49         @echo "cGCC                  = \"$(WhatGccIsCalled)\"" >> $(CONFIG_HS)
50         @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS)
51         @echo "cLeadingUnderscore    = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS)
52         @echo "cGHC_UNLIT            = \"$(GHC_UNLIT)\"" >> $(CONFIG_HS)
53         @echo "cGHC_HSC              = \"$(GHC_HSC)\"" >> $(CONFIG_HS)
54         @echo "cGHC_MANGLER          = \"$(GHC_MANGLER)\"" >> $(CONFIG_HS)
55         @echo "cGHC_SPLIT            = \"$(GHC_SPLIT)\"" >> $(CONFIG_HS)
56         @echo "cGHC_STATS            = \"$(GHC_STATS)\"" >> $(CONFIG_HS)
57         @echo "cGHC_SYSMAN           = \"$(GHC_SYSMAN)\"" >> $(CONFIG_HS)
58         @echo "cEnableWin32DLLs      = \"$(EnableWin32DLLs)\"" >> $(CONFIG_HS)
59         @echo "cCP                   = \"$(CP)\"" >> $(CONFIG_HS)
60         @echo "cRM                   = \"$(RM)\"" >> $(CONFIG_HS)
61         @echo "cCONTEXT_DIFF         = \"$(CONTEXT_DIFF)\"" >> $(CONFIG_HS)
62         @echo "cHaveLibGmp           = \"$(HaveLibGmp)\"" >> $(CONFIG_HS)
63         @echo "cGhcWithRegisterised  = \"$(GhcWithRegisterised)\"" >> $(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 hsc, 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 main/Constants_HC_OPTS          = -DHscIfaceFileVersion=$(HscIfaceFileVersion)
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 prelude/PrelRules_HC_OPTS       = 
211
212 parser/Lex_HC_OPTS              = -K2m -H16m 
213 parser/Ctype_HC_OPTS            = -K2m
214
215 rename/ParseIface_HC_OPTS       += -Onot -H45m -K2m -fno-warn-incomplete-patterns
216
217 parser/Parser_HC_OPTS           += -Onot -H80m -optCrts-M80m -K2m -fno-warn-incomplete-patterns
218
219 ifeq "$(TARGETPLATFORM)" "hppa1.1-hp-hpux9"
220 rename/RnMonad_HC_OPTS          =  -O2 -O2-for-C
221 endif
222
223 rename/RnEnv_HC_OPTS            = 
224 rename/RnSource_HC_OPTS         = -H12m
225 rename/RnIfaces_HC_OPTS         = -H8m 
226 rename/RnExpr_HC_OPTS           = -H10m
227 rename/RnNames_HC_OPTS          = -H12m
228 rename/RnMonad_HC_OPTS          = 
229 specialise/Specialise_HC_OPTS   = -Onot -H12m
230 simplCore/Simplify_HC_OPTS      = -H15m 
231 simplCore/OccurAnal_HC_OPTS     = -H10m
232 typecheck/TcGenDeriv_HC_OPTS    = -H10m
233
234 # tmp, -- SDM
235 specialise/Specialise_HC_OPTS   += -fno-prune-tydecls
236 hsSyn/HsBasic_HC_OPTS           += -fno-prune-tydecls
237 simplCore/SimplMonad_HC_OPTS    += -fno-prune-tydecls
238 absCSyn/AbsCSyn_HC_OPTS         += -fno-prune-tydecls
239 absCSyn/AbsCUtils_HC_OPTS       += -fno-prune-tydecls
240 codeGen/CgBindery_HC_OPTS       += -fno-prune-tydecls
241 codeGen/CgLetNoEscape_HC_OPTS   += -fno-prune-tydecls
242 codeGen/CgExpr_HC_OPTS          += -fno-prune-tydecls
243 nativeGen/AbsCStixGen_HC_OPTS   += -fno-prune-tydecls
244
245 # Was 10m for 2.10
246 typecheck/TcHsSyn_HC_OPTS       = -H15m 
247
248
249 # Was 10m for 2.10
250 typecheck/TcExpr_HC_OPTS        = -H15m
251 typecheck/TcBinds_HC_OPTS       = -H10m
252
253 typecheck/TcEnv_HC_OPTS         = -H10m
254 utils/SST_HC_OPTS               = 
255 utils/StringBuffer_HC_OPTS      = -fvia-C -fno-prune-tydecls
256 utils/Digraph_HC_OPTS           = -fglasgow-exts 
257 utils/DirUtils_HC_OPTS          = 
258
259 # temporary, due to bug in NCG (x86 spiller fails because a basic block
260 # contains both multiply and divide insns, probably soaking up all spill
261 # regs) (SDM, 1/6/2000), augmented by JRS 27 Oct 00.
262 utils/FastString_HC_OPTS        = -fvia-C
263
264 ifeq "$(alpha_HOST_ARCH)" "1"
265 # "stbu" bug in alpha native code generator...
266 basicTypes/Unique_HC_OPTS       = 
267 endif
268
269 # flags for PrimPacked:
270 #
271 # -monly-3-regs 
272 #       because it contains a 'ccall strlen', which gets inlined by
273 #       gcc, causing a lack of registers.
274 #
275 # -optC-funfolding-interface-threshold7
276 #       To stop the definition of 'strLength', which calls strlen, getting
277 #       into the interface file and spreading the -monly-3-regs virus.
278 #       We need -optC here because the driver before 3.02 didn't understand
279 #       the -funfolding flags.
280
281 utils/PrimPacked_HC_OPTS        = -fvia-C -monly-3-regs -optC-funfolding-interface-threshold7
282
283 # Strictness analyser misbehaving in 2.10, fails to terminate on
284 # UpdAnal.lhs due to weird recursive datatype.  Bug was exposed by a
285 # separate bugfix to the fixpoint finder.
286 simplStg/UpdAnal_HC_OPTS        = -fno-strictness
287
288 stgSyn/StgInterp_HC_OPTS        = -fvia-C
289
290 # ----------------------------------------------------------------------------
291 #               C compilations
292
293 SRC_C_OPTS     += -O -I. -IcodeGen
294
295
296 # ----------------------------------------------------------------------------
297 #               Generate supporting stuff for prelude/PrimOp.lhs 
298 #               from prelude/primops.txt
299
300 GENPOC=$(TOP)/utils/genprimopcode/genprimopcode
301
302 PRIMOP_BITS=primop-data-decl.hs-incl \
303             primop-tag.hs-incl  \
304             primop-list.hs-incl  \
305             primop-has-side-effects.hs-incl  \
306             primop-out-of-line.hs-incl  \
307             primop-commutable.hs-incl  \
308             primop-needs-wrapper.hs-incl  \
309             primop-can-fail.hs-incl  \
310             primop-strictness.hs-incl  \
311             primop-usage.hs-incl  \
312             primop-primop-info.hs-incl
313
314 prelude/PrimOp.o: $(PRIMOP_BITS)
315
316 depend :: $(PRIMOP_BITS)
317
318 primop-data-decl.hs-incl: prelude/primops.txt
319         $(GENPOC) --data-decl          < $< > $@
320 primop-tag.hs-incl: prelude/primops.txt
321         $(GENPOC) --primop-tag         < $< > $@
322 primop-list.hs-incl: prelude/primops.txt
323         $(GENPOC) --primop-list        < $< > $@
324 primop-has-side-effects.hs-incl: prelude/primops.txt
325         $(GENPOC) --has-side-effects   < $< > $@
326 primop-out-of-line.hs-incl: prelude/primops.txt
327         $(GENPOC) --out-of-line        < $< > $@
328 primop-commutable.hs-incl: prelude/primops.txt
329         $(GENPOC) --commutable         < $< > $@
330 primop-needs-wrapper.hs-incl: prelude/primops.txt
331         $(GENPOC) --needs-wrapper      < $< > $@
332 primop-can-fail.hs-incl: prelude/primops.txt
333         $(GENPOC) --can-fail           < $< > $@
334 primop-strictness.hs-incl: prelude/primops.txt
335         $(GENPOC) --strictness         < $< > $@
336 primop-usage.hs-incl: prelude/primops.txt
337         $(GENPOC) --usage              < $< > $@
338 primop-primop-info.hs-incl: prelude/primops.txt
339         $(GENPOC) --primop-primop-info < $< > $@
340
341
342
343 # ----------------------------------------------------------------------------
344 #               Parsers/lexers
345
346 parser/hschooks.o : parser/hschooks.c
347         @$(RM) $@
348         $(HC) -c -o $@ $(HC_OPTS) parser/hschooks.c
349
350
351 # Interface-file parser uses Happy
352 SRC_HAPPY_OPTS += +RTS -K2m -H16m -RTS  $(GHC_HAPPY_OPTS)
353
354 rename/ParseIface.hs : rename/ParseIface.y
355         @$(RM) rename/ParseIface.hs rename/ParseIface.hinfo
356         $(HAPPY) $(HAPPY_OPTS) rename/ParseIface.y
357         @chmod 444 rename/ParseIface.hs
358
359 parser/Parser.hs : parser/Parser.y
360         @$(RM) parser/Parser.hs parser/ParseIface.hinfo
361         $(HAPPY) $(HAPPY_OPTS) parser/Parser.y
362         @chmod 444 parser/Parser.hs
363
364 #-----------------------------------------------------------------------------
365 #               Linking
366
367 SRC_LD_OPTS += -no-link-chk -ldl
368
369 ifneq "$(GhcWithHscBuiltViaC)" "YES"
370 ifeq "$(GhcReportCompiles)" "YES"
371 SRC_LD_OPTS += -syslib misc -syslib exts
372 endif
373 endif
374
375 #-----------------------------------------------------------------------------
376 #               install
377
378 # We don't want hsc treated as an ordinary executable,
379 # but put it together with the libraries.
380 # Also don't want any interface files intstalled
381
382 INSTALL_LIBEXECS += hsc
383
384 #-----------------------------------------------------------------------------
385 #               depend
386
387 #
388 # Before doing `make depend', need to build all derived Haskell source files
389 #
390 depend :: $(LOOPS)
391
392 ifneq "$(GhcWithHscBuiltViaC)" "YES"
393 depend :: rename/ParseIface.hs
394 endif
395
396 #-----------------------------------------------------------------------------
397 #               clean
398
399 CLEAN_FILES += $(wildcard */*.$(way_)o */*.$(way_)hi)
400 CLEAN_FILES += $(PRIMOP_BITS)
401
402 # Extra tidy, remove the .hc files (if you've got them).
403 MAINTAINER_CLEAN_FILES += $(wildcard */*.hc) \
404         parser/Parser.hs rename/ParseIface.hs
405
406
407 #-----------------------------------------------------------------------------
408 #               TAGS setup
409
410 SRC_HSTAGS_OPTS += -fglasgow-exts -cpp
411 TAGS_HS_SRCS=$(foreach dir,$(DIRS),$(wildcard $(dir)/*.lhs))
412 TAGS_C_SRCS=$(strip $(foreach f,$(foreach dir,$(DIRS),$(wildcard $(dir)/*.c)),$(shell if [ -w $(f) ]; then echo $(f); else echo ''; fi)))
413
414 #-----------------------------------------------------------------------------
415 #               Include target-rule boilerplate
416
417 include $(TOP)/mk/target.mk
418
419 parser/%.o : parser/%.c
420