Delete GhcLibProfiled
[ghc-hetmet.git] / mk / config.mk.in
1 #                                                                -*-makefile-*-
2 # @configure_input@
3 #
4 ################################################################################
5 #
6 # config.mk.in
7 #
8 # This file supplies defaults for many tweakable build configuration
9 # options.  Some of the defaults are filled in by the autoconf-generated
10 # configure script.
11 #
12 # DO NOT EDIT THIS FILE!
13 #
14 #       - config.mk is auto-generated from config.mk.in by configure.
15 #         If you edit config.mk your changes will be spammed.
16 #
17 #       - Settings in this file may be overriden by giving replacement
18 #         definitions in build.mk.  See build.mk.sample for a good
19 #         starting point for a build.mk file.
20 #
21 #         If you don't have a build.mk file then you get defaults for everything.
22 #         The defaults should provide a reasonable vanilla build.
23
24 # TOP: the top of the fptools hierarchy, absolute path.
25 # On Windows this is a c:/foo/bar style path.
26 TOP             = @hardtop@
27
28 include $(TOP)/mk/project.mk
29
30 ################################################################################
31 #
32 #               Global configuration options
33 #
34 ################################################################################
35
36 # BootingFromHc - build GHC and the libraries from .hc files?
37 # (unregisterised only)
38 BootingFromHc = @BootingFromHc@
39
40 NO_INCLUDE_DEPS = NO
41 NO_INCLUDE_PKGDATA = NO
42
43 # Should we build latex docs?
44 LATEX_DOCS = NO
45
46 # Mac OS X deployment target (to cross-compile for older OS versions)
47 #
48 MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@
49 MACOSX_DEPLOYMENT_SDK = @MACOSX_DEPLOYMENT_SDK@
50
51 ifneq "$(MACOSX_DEPLOYMENT_VERSION)" ""
52 MACOSX_DEPLOYMENT_CC_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
53                             -isysroot $(MACOSX_DEPLOYMENT_SDK) \
54                             --no-builtin-fprintf
55 MACOSX_DEPLOYMENT_LD_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
56                             -Wl,-syslibroot,$(MACOSX_DEPLOYMENT_SDK)
57 # We don't extend SRC_CC_OPTS and friends here directly, as (a) they may get
58 # overwritten in build.mk and (b) we must not use the deployment options in
59 # stage 1 or we get a linker error if the bootstrap compiler is for a more 
60 # recent OS version.
61 #
62 # We need --no-builtin-fprintf, as the use of the builtin function optimisation
63 # for fprintf together with #include "PosixSource" in the RTS leads to the
64 # use of fwrite$UNIX2003 (with GCC 4.0.1 on Mac OS X 10.5.2).
65 endif
66
67 ################################################################################
68 #
69 # Variables that control how the compiler itself is built
70 #
71 ################################################################################
72
73 # The compiler used to build GHC is $(GHC).  To change the actual compiler
74 # used, re-configure with --with-ghc=<path-to-ghc>.
75
76 # Extra ways in which to build the compiler (for example, you might want to
77 # build a profiled compiler so you can see where it spends its time)
78 GhcCompilerWays=
79
80 # Extra option flags to pass to the compiler that compiles the compiler
81 # (Ones that are essential are wired into compiler/Makefile)
82 # Typical options to use here:
83 #
84 #       -DDEBUG         include debugging code and assertions (will make the
85 #                       compiler slower and produce debugging output, but useful
86 #                       for development)
87 #
88 #       -dcore-lint     check the types after every pass of the compiler;
89 #                       a pretty strong internal check of the compiler being
90 #                       used to compile GHC.  Useful when bootstrapping.
91 GhcHcOpts=-Rghc-timing
92
93 # Extra options added to specific stages of the compiler bootstrap.
94 # These are placed later on the command line, and may therefore
95 # override options from $(GhcHcOpts).
96 GhcStage1HcOpts=
97 GhcStage2HcOpts=-O2
98 GhcStage3HcOpts=-O2
99
100 GhcDebugged=NO
101 GhcDynamic=NO
102
103 # GhcProfiled=YES means compile a profiled stage-2 compiler
104 GhcProfiled=NO
105
106 # Do we support shared libs?
107 PlatformSupportsSharedLibs = $(if $(filter $(TARGETPLATFORM),i386-unknown-linux x86_64-unknown-linux i386-unknown-freebsd x86_64-unknown-freebsd i386-unknown-mingw32 i386-apple-darwin powerpc-apple-darwin),YES,NO)
108
109 # Build a compiler that will build *unregisterised* libraries and
110 # binaries by default.  Unregisterised code is supposed to compile and
111 # run without any support for architecture-specific assembly mangling,
112 # register assignment or tail-calls, and is therefore a good way to get
113 # started when porting GHC to new architectures.
114 #
115 # If this is set to NO, you can still use the unregisterised way
116 # (way 'u') to get unregisterised code, but the default way will be
117 # registerised.
118 #
119 # NOTE: the stage1 compiler will be a registerised binary (assuming
120 # the compiler you build with is generating registerised binaries), but
121 # the stage2 compiler will be an unregisterised binary.
122 #
123 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
124 GhcUnregisterised=YES
125 else
126 GhcUnregisterised=NO
127 endif
128
129 # Build a compiler with a native code generator backend
130 # (as well as a C backend)
131 #
132 # Target platforms supported:
133 #   i386, powerpc
134 #   AIX is not supported 
135 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)))
136 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
137
138 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
139 GhcWithNativeCodeGen=$(strip\
140     $(if $(filter YESYESNO,\
141                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
142
143 # Build a compiler with the llvm code generator backend
144 GhcWithLlvmCodeGen=NO
145
146 HaveLibDL = @HaveLibDL@
147
148 # ArchSupportsSMP should be set iff there is support for that arch in
149 # includes/stg/SMP.h
150 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
151
152 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
153 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
154
155 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
156 # has support for this OS/ARCH combination.
157
158 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd dragonfly netbsd openbsd darwin)))
159 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
160
161 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
162 GhcWithInterpreter=YES
163 else 
164 GhcWithInterpreter=NO
165 endif
166
167 # GhcEnableTablesNextToCode tells us whether the target architecture
168 # supports placing info tables directly before the entry code
169 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
170 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
171 # code or not, which may be decided by options to the compiler later.
172 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
173 GhcEnableTablesNextToCode=NO
174 else
175 GhcEnableTablesNextToCode=YES
176 endif
177
178 # Whether to use libffi for adjustors (foreign import "wrapper") or
179 # not.  If we have built-in support (rts/Adjustor.c) then we use that,
180 # otherwise we fall back on libffi, which is slightly slower.
181 ArchHasAdjustorSupport=$(strip $(if $(findstring $(HostArch_CPP),i386 x86_64 powerpc,),YES,NO))
182 ifeq "$(ArchHasAdjustorSupport)" "YES"
183 UseLibFFIForAdjustors=NO
184 else
185 UseLibFFIForAdjustors=YES
186 endif
187
188 # On Windows we normally want to make a relocatable bindist, to we
189 # ignore flags like libdir
190 ifeq "$(Windows)" "YES"
191 RelocatableBuild = YES
192 else
193 RelocatableBuild = NO
194 endif
195
196 # needs to be after $(RelocatableBuild) is set above
197 include $(TOP)/mk/install.mk
198
199 # When building bindists we set this to yes so that the binaries are as
200 # portable as possible.
201 BeConservative = NO
202
203 #
204 # Building various ways?
205 # (right now, empty if not).
206 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
207 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
208
209 #------------------------------------------------------------------------------
210 # Options for Libraries
211
212 # Which directory (in libraries/) contains the integer library?
213 INTEGER_LIBRARY=integer-gmp
214
215 # We build the libraries at least the "vanilla" way (way "v")
216 GhcLibWays = v
217
218 # In addition to the normal sequential way, the default is to also build
219 # profiled prelude libraries unless we are booting from .hc files
220 ifneq "$(BootingFromHc)" "YES"
221 GhcLibWays += p
222 endif
223
224 ifeq "$(PlatformSupportsSharedLibs)" "YES"
225 GhcLibWays += dyn
226 endif
227
228 # Handy way to test whether we're building shared libs or not.
229 BuildSharedLibs=$(strip $(if $(findstring dyn,$(GhcLibWays)),YES,NO))
230
231 # In addition, the RTS is built in some further variations.  Ways that
232 # make sense here:
233
234 #   thr         : threaded
235 #   thr_p       : threaded profiled
236 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
237 #   debug_p     : debugging profiled
238 #   thr_debug   : debugging threaded
239 #   thr_debug_p : debugging threaded profiled
240 #   l           : event logging
241 #   thr_l       : threaded and event logging
242 #
243 GhcRTSWays=l
244
245 # Usually want the debug version
246 ifeq "$(BootingFromHc)" "NO"
247 GhcRTSWays += debug 
248 endif
249
250 # Want the threaded versions unless we're unregisterised
251 # Defer the check until later by using $(if..), because GhcUnregisterised might
252 # be set in build.mk, which hasn't been read yet.
253 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_debug thr_l,)
254 GhcRTSWays += $(if $(findstring p, $(GhcLibWays)),$(if $(findstring NO, $(GhcUnregisterised)),thr_p,),)
255 GhcRTSWays += $(if $(findstring dyn, $(GhcLibWays)), dyn debug_dyn $(if $(findstring NO, $(GhcUnregisterised)),thr_dyn thr_debug_dyn),)
256
257 # We can only build GHCi threaded if we have a threaded RTS:
258 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
259
260 # Option flags to pass to GHC when it's compiling modules in
261 # fptools/libraries.  Typically these are things like -O or
262 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
263 # the build system.
264 #
265 #       -O(2) is pretty desirable, otherwise no inlining of prelude
266 #               things (incl "+") happens when compiling with this compiler
267 #
268 #       -XGenerics switches on generation of support code for 
269 #               derivable type classes.  This is now off by default,
270 #               but we switch it on for the libraries so that we generate
271 #               the code in case someone importing wants it
272
273 GhcLibHcOpts=-O2 -XGenerics
274
275 # Strip local symbols from libraries?  This can make the libraries smaller,
276 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
277 #
278 StripLibraries=NO
279
280 # These are the URL patterns that Haddock uses to generate the "Source
281 # File" links on each page.
282 PackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
283
284 # ----------------------------------------------------------------------------
285 # Object-file splitting
286 #
287 #       Set SplitObjs=YES or NO in your build.mk
288 #
289 #       Don't use -split-objs in in GhcLibHcOpts, because the build
290 #               system needs to do other special magic if you are
291 #               doing object-file splitting
292
293 ArchSupportsSplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),YES,NO))
294
295 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
296 SupportsSplitObjs=$(strip $(if $(filter YES,$(ArchSupportsSplitObjs)),\
297                     $(if $(filter NO,$(BootingFromHc)),\
298                       $(if $(filter NO,$(GhcUnregisterised)),\
299                         YES,\
300                         NO),\
301                       NO),\
302                     NO))
303
304 # By default, enable SplitObjs for the libraries if this build supports it
305 SplitObjs=$(SupportsSplitObjs)
306
307 # ----------------------------------------------------------------------------
308 # Package-related things
309
310 # Extra packages to add to the build, in dependency order
311 EXTRA_PACKAGES =
312
313 # Whether to install $(EXTRA_PACKAGES)
314 InstallExtraPackages = NO
315
316 # Run "ghc-pkg check" on each package
317 CHECK_PACKAGES = NO
318
319 # ----------------------------------------------------------------------------
320 # Options for GHC's RTS
321
322 # For an optimised RTS (you probably don't want to change these; we build
323 # a debugging RTS by default now.  Use -debug to get it).
324 GhcRtsHcOpts=-optc-O2
325 GhcRtsCcOpts=-fomit-frame-pointer
326
327 # Include the front panel code?  Needs GTK+.
328 GhcRtsWithFrontPanel = NO
329
330 # Include support for CPU performance counters via the PAPI library in the RTS?
331 # (PAPI: http://icl.cs.utk.edu/papi/)
332 GhcRtsWithPapi = NO
333 PapiLibDir=
334 PapiIncludeDir=
335
336 ################################################################################
337 #
338 #               Paths (see paths.mk)
339 #
340 ################################################################################
341
342 # Directory used by GHC (and possibly other tools) for storing
343 # temporary files.  If your TMPDIR isn't big enough, either override
344 # this in build.mk or set your environment variable "TMPDIR" to point
345 # to somewhere with more space.  (TMPDIR=. is a good choice).
346
347 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
348 # override an environment variable with the value of the make variable
349 # of the same name (if it exists) when executing sub-processes, so
350 # setting the TMPDIR env var would have no effect in the build tree.
351
352 DEFAULT_TMPDIR          = /tmp
353 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
354 DEFAULT_TMPDIR          = /C/TEMP
355 endif
356 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
357 DEFAULT_TMPDIR          = /C/TEMP
358 endif
359
360 BIN_DIST_NAME         = ghc-$(ProjectVersion)
361 BIN_DIST_PREP_DIR     = bindistprep/$(BIN_DIST_NAME)
362 BIN_DIST_PREP_TAR     = bindistprep/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar
363 BIN_DIST_PREP_TAR_BZ2 = $(BIN_DIST_PREP_TAR).bz2
364 BIN_DIST_TAR_BZ2      = $(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2
365 BIN_DIST_LIST         = bindist-list
366
367 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-i386-windows
368 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
369
370 # -----------------------------------------------------------------------------
371 # Utilities programs: flags 
372
373 # If you want to give any standard flags to pretty much any utility
374 # (see utils.mk for a complete list), by adding a line here
375 #
376 #       SRC_P_OPTS += ...
377 #
378 # where P is the utility. For example, to add -O to all Haskell
379 # compilations, 
380 #
381 #       SRC_HC_OPTS += -O
382
383 SRC_HC_OPTS += -H32m -O
384
385 # These flags make flex 8-bit
386 SRC_FLEX_OPTS   += -8
387
388 # Default fptools options for dllwrap.
389 SRC_BLD_DLL_OPTS += --target=i386-mingw32
390
391 # Flags for CPP when running GreenCard on .pgc files
392 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
393
394
395 # -----------------------------------------------------------------------------
396 # Names of programs in the GHC tree
397 #
398 #      xxx_PGM          the name of an executable, without the path
399 #      xxx              the executable relative to the current dir
400
401 GHC_UNLIT_PGM           = unlit$(exeext)
402 GHC_HP2PS_PGM           = hp2ps$(exeext)
403 GHC_GHCTAGS_PGM         = ghctags$(exeext)
404 GHC_HSC2HS_PGM          = hsc2hs$(exeext)
405 GHC_TOUCHY_PGM          = touchy$(exeext)
406 GHC_MANGLER_PGM         = ghc-asm
407 GHC_SPLIT_PGM           = ghc-split
408 GHC_SYSMAN_PGM          = SysMan
409 GHC_GENPRIMOP_PGM       = genprimopcode$(exeext)
410 GHC_GENAPPLY_PGM        = genapply$(exeext)
411 GHC_CABAL_PGM           = ghc-cabal$(exeext)
412 GHC_PKG_PGM             = ghc-pkg$(exeext)
413 GHC_LTX_PGM             = ltx$(exeext)
414 GHC_MKDIRHIER_PGM       = mkdirhier
415 GHC_LNDIR_PGM           = lndir
416 GHC_DUMMY_GHC_PGM       = dummy-ghc$(exeext)
417
418 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
419 GHC_CP                  = "xcopy /y"
420 GHC_PERL                = perl
421 else
422 GHC_CP                  = $(CP)
423 GHC_PERL                = $(PERL)
424 endif
425
426 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
427 MANGLER                 = $(INPLACE_LIB)/$(GHC_MANGLER_PGM)
428 SPLIT                   = $(INPLACE_LIB)/$(GHC_SPLIT_PGM)
429 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
430 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
431 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
432
433 UNLIT                   = $(INPLACE_LIB)/$(GHC_UNLIT_PGM)
434 TOUCHY                  = $(INPLACE_LIB)/$(GHC_TOUCHY_PGM)
435 MKDIRHIER               = $(INPLACE_BIN)/$(GHC_MKDIRHIER_PGM)
436 GHC_CABAL_INPLACE       = $(INPLACE_BIN)/$(GHC_CABAL_PGM)
437 GENAPPLY_INPLACE        = $(INPLACE_BIN)/$(GHC_GENAPPLY_PGM)
438 GHC_PKG_INPLACE         = $(INPLACE_BIN)/$(GHC_PKG_PGM)
439 GHCTAGS_INPLACE         = $(INPLACE_BIN)/$(GHC_GHCTAGS_PGM)
440 HSC2HS_INPLACE          = $(INPLACE_BIN)/$(GHC_HSC2HS_PGM)
441 GENPRIMOP_INPLACE       = $(INPLACE_BIN)/$(GHC_GENPRIMOP_PGM)
442 DUMMY_GHC_INPLACE       = $(INPLACE_BIN)/$(GHC_DUMMY_GHC_PGM)
443
444 GENERATED_FILE  = chmod a-w
445 EXECUTABLE_FILE = chmod +x
446
447 #-----------------------------------------------------------------------------
448 # Haskell compilers and mkdependHS
449
450 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
451 # compilers, if available.
452 #
453 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
454 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
455 #
456 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
457 # (because the version numbers have to be calculated).
458
459 GHC := @WithGhc@
460 # If we have a make dependency on c:/ghc/ghc, and the file is actually
461 # called c:/ghc/ghc.exe, then make will think that ghc doesn't exist
462 # and that it doesn't know how to create it.
463 ifneq "$(wildcard $(GHC).exe)" ""
464 GHC := $(GHC).exe
465 endif
466
467 GhcDir          = $(dir $(GHC))
468
469 # Set to YES if $(GHC) has the editline package installed
470 GhcHasEditline  = @GhcHasEditline@
471
472 HBC             = @HBC@
473 NHC             = @NHC@
474
475 # Sometimes we want to invoke ghc from the build tree in different
476 # places (eg. it's handy to have a nofib & a ghc build in the same
477 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
478
479 GHC_INPLACE = $(GHC_STAGE1)
480
481 GHC_STAGE0_ABS = $(GHC)
482 GHC_STAGE1_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage1$(exeext)
483 GHC_STAGE2_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage2$(exeext)
484 GHC_STAGE3_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage3$(exeext)
485
486 GHC_STAGE0  = $(GHC)
487 GHC_STAGE1  = $(INPLACE_BIN)/ghc-stage1$(exeext)
488 GHC_STAGE2  = $(INPLACE_BIN)/ghc-stage2$(exeext)
489 GHC_STAGE3  = $(INPLACE_BIN)/ghc-stage3$(exeext)
490
491 # Install stage 2 by default, can be changed to 3
492 INSTALL_GHC_STAGE=2
493
494 BOOTSTRAPPING_CONF = libraries/bootstrapping.conf
495
496 INPLACE_PACKAGE_CONF = $(INPLACE_LIB)/package.conf.d
497
498 GhcVersion      = @GhcVersion@
499 GhcPatchLevel   = @GhcPatchLevel@
500 GhcMajVersion   = @GhcMajVersion@
501 GhcMinVersion   = @GhcMinVersion@
502
503 # Keep this in sync with the variables in package-config.mk
504 ghc_ge_6102 = @ghc_ge_6102@
505 ghc_ge_611 = @ghc_ge_611@
506 ghc_ge_613 = @ghc_ge_613@
507
508 # Canonicalised ghc version number, used for easy (integer) version
509 # comparisons.  We must expand $(GhcMinVersion) to two digits by
510 # adding a leading zero if necessary:
511 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
512 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
513 else
514 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
515 endif
516
517 #-----------------------------------------------------------------------------
518 # C compiler
519 #
520 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
521 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
522 # needs to know which gcc you're using in order to perform its tests.
523
524 HaveGcc         = @HaveGcc@
525 UseGcc          = YES
526 WhatGccIsCalled = @WhatGccIsCalled@
527 GccVersion      = @GccVersion@
528 GccLT34         = @GccLT34@
529 ifeq "$(strip $(HaveGcc))" "YES"
530 ifneq "$(strip $(UseGcc))"  "YES"
531   CC    = cc
532 else
533   CC    = $(WhatGccIsCalled)
534 endif
535 endif
536
537 # C compiler and linker flags from configure (e.g. -m<blah> to select
538 # correct C compiler backend).
539 CONF_CC_OPTS_STAGE0 = @CONF_CC_OPTS_STAGE0@
540 CONF_CC_OPTS_STAGE1 = @CONF_CC_OPTS_STAGE1@
541 CONF_CC_OPTS_STAGE2 = @CONF_CC_OPTS_STAGE2@
542 CONF_LD_OPTS_STAGE0 = @CONF_LD_OPTS_STAGE0@
543 CONF_LD_OPTS_STAGE1 = @CONF_LD_OPTS_STAGE1@
544 CONF_LD_OPTS_STAGE2 = @CONF_LD_OPTS_STAGE2@
545
546 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
547 CONF_CC_OPTS += -G0
548 endif
549
550 SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS) $(CONF_CC_OPTS_STAGE0)))
551 SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))
552
553 #-----------------------------------------------------------------------------
554 # Mingwex Library
555 #
556 HaveLibMingwEx  = @HaveLibMingwEx@
557 DLLTOOL                 = inplace/mingw/bin/dlltool.exe
558
559 #-----------------------------------------------------------------------------
560 # Flex (currently unused, could be moved to glafp-utils)
561
562 # FLEX                  = @LEX@
563 # Don't bother with -lfl, we define our own yywrap()s anyway.
564 # FLEX_LIB              = 
565 #WAS:FLEX_LIB           = @LEXLIB@
566
567 #-----------------------------------------------------------------------------
568 # Other standard (ha!) Unix utilities
569
570 AR                      = @ArCmd@
571 AR_OPTS                 = @ArArgs@
572 ArSupportsInput         = @ArSupportsInput@
573 ArSupportsAtFile = @ArSupportsAtFile@
574 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
575 BASH                    = /usr/local/bin/bash
576
577 CONTEXT_DIFF            = @ContextDiffCmd@
578 CP                      = cp
579 # It's not easy to separate the CPP program from its flags, as
580 # AC_PROG_CPP defines CPP as "/usr/bin/gcc -E"
581 CPP                     = @CPP@ @CPPFLAGS@
582 CTAGS                   = $(ETAGS)
583 #
584 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
585 # behave plausibly on Haskell sources.
586 #
587 RAWCPP_FLAGS            = -undef -traditional
588 FIND                    = @FindCmd@
589 SORT                    = @SortCmd@
590 INSTALL                 = @INSTALL@
591 #
592 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
593 # install-sh script (if chosen). This not terribly useful to us, so we convert
594 # it into an abs. path.
595
596 INSTALL                 := $(subst .././install-sh,$(TOP)/install-sh,$(INSTALL))
597 LATEX                   = latex
598 PDFLATEX        = pdflatex
599 BIBTEX          = bibtex
600 LN_S                    = @LN_S@
601 MV                      = mv
602 NROFF                   = nroff
603 PERL                    = @PerlCmd@
604 PYTHON                  = @PythonCmd@
605 PIC                     = pic
606 PREPROCESSCMD           = $(CC) -E
607 RANLIB                  = @RANLIB@
608 SED                     = @SedCmd@
609 TR                      = tr
610 SHELL                   = /bin/sh
611
612 HaveDtrace              = @HaveDtrace@
613 DTRACE                  = @DtraceCmd@
614
615 LD = @LdCmd@
616 NM = @NmCmd@
617
618 # Some ld's support the -x flag and some don't, so the configure
619 # script detects which we have and sets LdXFlag to "-x" or ""
620 # respectively.
621 LD_X                    = @LdXFlag@
622
623 # GNU ld supports input via a linker script, which is useful to avoid
624 # overflowing command-line length limits.
625 LdIsGNULd               = @LdIsGNULd@
626
627 # On MSYS, building with SplitObjs=YES fails with 
628 #   ar: Bad file number
629 # see #3201.  We need to specify a smaller max command-line size
630 # to work around it.  32767 doesn't work; 30000 does.
631 XARGS = xargs
632 ifeq "$(Windows)" "YES"
633 XARGS_OPTS = -s 30000
634 endif
635
636 #
637 # In emergency situations, REAL_SHELL is used to perform shell commands
638 # from within the ghc driver script, by scribbling the command line to
639 # a temp file and then having $(REAL_SHELL) execute it. 
640 #
641 # The reason for having to do this is that overly long command lines
642 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
643 # 2.5.1), which is why this backdoor is provided. The situation of overly
644 # long command lines is either encountered while doing `make boot' in compiler/, 
645 # or when linking the compiler binary (`hsc'). 
646 #
647 # We do not use SHELL to execute long commands, as `make' will more than likely
648 # override whatever setting you have in your environment while executing. 
649
650 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
651 # as it is SHELL that will show up the bogosity in the first place, but setting
652 # it to anything else isn't really portable.
653 #
654 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
655 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
656 # command shell.
657 #
658 REAL_SHELL     = $(SHELL)
659
660 STRIP_CMD      = strip
661 PATCH_CMD      = @PatchCmd@
662 TAR_CMD        = @TarCmd@
663 BZIP2_CMD      = bzip2
664 GZIP_CMD       = gzip
665
666 HSCOLOUR_CMD   = @HSCOLOUR@
667
668 TIME_CMD       = @TimeCmd@
669
670 # GTK+
671 GTK_CONFIG_CMD = @GTK_CONFIG@
672
673 # Set this if you want to use Inno Setup to build a Windows installer
674 # when you make a bindist
675 ISCC_CMD       =
676
677 #-----------------------------------------------------------------------------
678 # DocBook XML stuff
679
680 BUILD_DOCBOOK_HTML       = @BUILD_DOCBOOK_HTML@
681 BUILD_DOCBOOK_PS         = @BUILD_DOCBOOK_PS@
682 BUILD_DOCBOOK_PDF        = @BUILD_DOCBOOK_PDF@
683 DBLATEX                  = @DblatexCmd@
684 XSLTPROC                 = @XsltprocCmd@
685 XMLLINT                  = @XmllintCmd@
686 HAVE_DOCBOOK_XSL         = @HAVE_DOCBOOK_XSL@
687 XSLTPROC_HTML_STYLESHEET = http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
688 XSLTPROC_LABEL_OPTS      = --stringparam toc.section.depth 3 \
689                            --stringparam section.autolabel 1 \
690                            --stringparam section.label.includes.component.label 1
691
692 #-----------------------------------------------------------------------------
693 #               FPtools support software
694
695 BLD_DLL                 = dllwrap
696
697 #
698 # ghc-pkg
699 #
700 GHC_PKG                 = @GhcPkgCmd@
701
702 #
703 # Happy
704 #
705 HAPPY                   = @HappyCmd@
706 HAPPY_VERSION           = @HappyVersion@                
707 #
708 # Options to pass to Happy when we're going to compile the output with GHC
709 #
710 SRC_HAPPY_OPTS          = -agc --strict
711
712 # Temp. to work around performance problems in the HEAD around 8/12/2003,
713 # A Happy compiled with this compiler needs more stack.
714 SRC_HAPPY_OPTS          += +RTS -K2m -RTS
715
716 #
717 # Alex
718 #
719 ALEX                    = @AlexCmd@
720 ALEX_VERSION            = @AlexVersion@         
721 #
722 # Options to pass to Happy when we're going to compile the output with GHC
723 #
724 SRC_ALEX_OPTS           = -g
725
726 HSTAGS = @HstagsCmd@
727
728 # Should we build haddock docs?
729 HADDOCK_DOCS = YES
730 # And HsColour the sources?
731 ifeq "$(HSCOLOUR_CMD)" ""
732 HSCOLOUR_SRCS = NO
733 else
734 HSCOLOUR_SRCS = YES
735 endif
736
737 ################################################################################
738 #
739 #               31-bit-Int Core files
740 #
741 ################################################################################
742
743
744 # It is possible to configure the compiler and prelude to support 31-bit
745 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
746 # architecture.  Currently the only useful output from this option is external Core
747 # files.  The following additions to your build.mk will produce the
748 # 31-bit core output.  Note that this is *not* just a library "way"; the
749 # compiler must be built a special way too.
750
751 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
752 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
753 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
754 # SplitObjs=NO
755
756 ################################################################################
757 #
758 #    Library configure arguments
759 #
760 ################################################################################
761
762 CONFIGURE_ARGS = @CONFIGURE_ARGS@
763
764 ################################################################################
765 #
766 #    To be passed to sub-builds
767 #
768 ################################################################################
769
770 ICONV_INCLUDE_DIRS = @ICONV_INCLUDE_DIRS@
771 ICONV_LIB_DIRS = @ICONV_LIB_DIRS@
772
773 GMP_INCLUDE_DIRS = @GMP_INCLUDE_DIRS@
774 GMP_LIB_DIRS = @GMP_LIB_DIRS@