Make Windows bindists and installers work in the new build system
[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 #         This may be triggered automatically by the build system (say
16 #         if config.mk.in has changed more recently than config.mk),
17 #         so if you edit config.mk your changes will be spammed.
18 #
19 #       - Settings in this file may be overriden by giving replacement
20 #         definitions in build.mk.  See build.mk.sample for a good
21 #         starting point for a build.mk file.
22 #
23 #         If you don't have a build.mk file then you get defaults for everything.
24 #         The defaults should provide a reasonable vanilla build.
25
26 # TOP: the top of the fptools hierarchy, absolute path.
27 # On Windows this is a c:/foo/bar style path.
28 TOP             = @hardtop@
29
30 include $(TOP)/mk/project.mk
31
32 ################################################################################
33 #
34 #               Global configuration options
35 #
36 ################################################################################
37
38 # BootingFromHc - build GHC and the libraries from .hc files?
39 BootingFromHc = @BootingFromHc@
40
41 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
42 # rather than registerised code, i.e., disable the mangler?
43 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
44
45 NO_INCLUDE_DEPS = NO
46 NO_INCLUDE_PKGDATA = NO
47
48 # Should we build latex docs?
49 LATEX_DOCS = NO
50
51 # Mac OS X deployment target (to cross-compile for older OS versions)
52 #
53 MACOSX_DEPLOYMENT_VERSION = @MACOSX_DEPLOYMENT_VERSION@
54 MACOSX_DEPLOYMENT_SDK = @MACOSX_DEPLOYMENT_SDK@
55
56 ifneq "$(MACOSX_DEPLOYMENT_VERSION)" ""
57 MACOSX_DEPLOYMENT_CC_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
58                             -isysroot $(MACOSX_DEPLOYMENT_SDK) \
59                             --no-builtin-fprintf
60 MACOSX_DEPLOYMENT_LD_OPTS = -mmacosx-version-min=$(MACOSX_DEPLOYMENT_VERSION) \
61                             -Wl,-syslibroot,$(MACOSX_DEPLOYMENT_SDK)
62 # We don't extend SRC_CC_OPTS and friends here directly, as (a) they may get
63 # overwritten in build.mk and (b) we must not use the deployment options in
64 # stage 1 or we get a linker error if the bootstrap compiler is for a more 
65 # recent OS version.
66 #
67 # We need --no-builtin-fprintf, as the use of the builtin function optimisation
68 # for fprintf together with #include "PosixSource" in the RTS leads to the
69 # use of fwrite$UNIX2003 (with GCC 4.0.1 on Mac OS X 10.5.2).
70 endif
71
72 ################################################################################
73 #
74 # Variables that control how the compiler itself is built
75 #
76 ################################################################################
77
78 # The compiler used to build GHC is $(GHC).  To change the actual compiler
79 # used, re-configure with --with-ghc=<path-to-ghc>.
80
81 # Extra ways in which to build the compiler (for example, you might want to
82 # build a profiled compiler so you can see where it spends its time)
83 GhcCompilerWays=
84
85 # Extra option flags to pass to the compiler that compiles the compiler
86 # (Ones that are essential are wired into compiler/Makefile)
87 # Typical options to use here:
88 #
89 #       -DDEBUG         include debugging code and assertions (will make the
90 #                       compiler slower and produce debugging output, but useful
91 #                       for development)
92 #
93 #       -dcore-lint     check the types after every pass of the compiler;
94 #                       a pretty strong internal check of the compiler being
95 #                       used to compile GHC.  Useful when bootstrapping.
96 GhcHcOpts=-Rghc-timing
97
98 # Extra options added to specific stages of the compiler bootstrap.
99 # These are placed later on the command line, and may therefore
100 # override options from $(GhcHcOpts).
101 GhcStage1HcOpts=
102 GhcStage2HcOpts=-O2
103 GhcStage3HcOpts=-O2
104
105 GhcProfiled=NO
106 GhcDebugged=NO
107 GhcLibProfiled=$(if $(filter p,$(GhcLibWays)),YES,NO)
108
109 # Build shared and/or static libs?
110 BuildSharedLibs=@BuildSharedLibs@
111 # ToDo later:
112 # BuildStaticLibs=@BuildStaticLibs@
113
114 # Build a compiler that will build *unregisterised* libraries and
115 # binaries by default.  Unregisterised code is supposed to compile and
116 # run without any support for architecture-specific assembly mangling,
117 # register assignment or tail-calls, and is therefore a good way to get
118 # started when porting GHC to new architectures.
119 #
120 # If this is set to NO, you can still use the unregisterised way
121 # (way 'u') to get unregisterised code, but the default way will be
122 # registerised.
123 #
124 # NOTE: the stage1 compiler will be a registerised binary (assuming
125 # the compiler you build with is generating registerised binaries), but
126 # the stage2 compiler will be an unregisterised binary.
127 #
128 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
129 GhcUnregisterised=YES
130 else
131 GhcUnregisterised=NO
132 endif
133
134 # Build a compiler with a native code generator backend
135 # (as well as a C backend)
136 #
137 # Target platforms supported:
138 #   i386, powerpc
139 #   AIX is not supported 
140 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)))
141 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
142
143 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
144 GhcWithNativeCodeGen=$(strip\
145     $(if $(filter YESYESNO,\
146                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
147
148 HaveLibDL = @HaveLibDL@
149
150 # ArchSupportsSMP should be set iff there is support for that arch in
151 # includes/SMP.h
152 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
153
154 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
155 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
156
157 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
158 # has support for this OS/ARCH combination.
159
160 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
161 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
162
163 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
164 GhcWithInterpreter=YES
165 else 
166 GhcWithInterpreter=NO
167 endif
168
169 # GhcEnableTablesNextToCode tells us whether the target architecture
170 # supports placing info tables directly before the entry code
171 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
172 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
173 # code or not, which may be decided by options to the compiler later.
174 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
175 GhcEnableTablesNextToCode=NO
176 else
177 GhcEnableTablesNextToCode=YES
178 endif
179
180 # On Windows we normally want to make a relocatable bindist, to we
181 # ignore flags like libdir
182 ifeq "$(Windows)" "YES"
183 RelocatableBuild = YES
184 else
185 RelocatableBuild = NO
186 endif
187
188 # When building bindists we set this to yes so that the binaries are as
189 # portable as possible.
190 BeConservative = NO
191
192 #
193 # Building various ways?
194 # (right now, empty if not).
195 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
196 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
197
198 # Interface file version (hi-boot files only)
199 #
200 # A GHC built with HscIfaceFileVersion=n will look for 
201 #       M.hi-boot-n, and only then for 
202 #       M.hi-boot.
203 # (It'll be happy with the latter if the former doesn't exist.)
204 #
205 #
206 # This variable is used ONLY for hi-boot files.  Its only purpose is
207 # to allow you to have a single directory with multiple .hi-boot files
208 # for the same module, each corresponding to a different version of
209 # GHC.
210 #
211 # HscIfaceFileVersion is propagated to hsc via
212 # compiler/main/Config.hs, which is automatically generated by
213 # compiler/Makefile.
214
215 HscIfaceFileVersion=6
216
217 #------------------------------------------------------------------------------
218 # Options for Libraries
219
220 # Which directory (in libraries/) contains the integer library?
221 INTEGER_LIBRARY=integer-gmp
222
223 # We build the libraries at least the "vanilla" way (way "v")
224 GhcLibWays = v
225
226 # In addition to the normal sequential way, the default is to also build
227 # profiled prelude libraries unless we are booting from .hc files
228 ifneq "$(BootingFromHc)" "YES"
229 GhcLibWays += p
230 endif
231
232 ifeq "$(BuildSharedLibs)" "YES"
233 GhcLibWays += dyn
234 endif
235
236 # In addition, the RTS is built in some further variations.  Ways that
237 # make sense here:
238
239 #   thr         : threaded
240 #   thr_p       : threaded profiled
241 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
242 #   debug_p     : debugging profiled
243 #   thr_debug   : debugging threaded
244 #   thr_debug_p : debugging threaded profiled
245 #   t           : ticky-ticky profiling
246 #   debug_t     : debugging ticky-ticky profiling
247 #   l           : event logging
248 #   thr_l       : threaded and event logging
249 #   thr_debug_l : threaded and debugging and event logging
250 #
251 GhcRTSWays=l
252
253 # Usually want the debug version
254 ifeq "$(BootingFromHc)" "NO"
255 GhcRTSWays += debug 
256 endif
257
258 ifeq "$(BuildSharedLibs)" "YES"
259 GhcRTSWays += dyn debug_dyn thr_dyn thr_debug_dyn
260 endif
261
262 # Want the threaded versions unless we're unregisterised
263 # Defer the check until later by using $(if..), because GhcUnregisterised might
264 # be set in build.mk, which hasn't been read yet.
265 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_debug thr_l,)
266 GhcRTSWays += $(if $(findstring p, $(GhcLibWays)),$(if $(findstring NO, $(GhcUnregisterised)),thr_p,),)
267
268 # We can only build GHCi threaded if we have a threaded RTS:
269 GhcThreaded = $(if $(findstring thr,$(GhcRTSWays)),YES,NO)
270
271 # Option flags to pass to GHC when it's compiling modules in
272 # fptools/libraries.  Typically these are things like -O or
273 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
274 # the build system.
275 #
276 #       -O(2) is pretty desirable, otherwise no inlining of prelude
277 #               things (incl "+") happens when compiling with this compiler
278 #
279 #       -XGenerics switches on generation of support code for 
280 #               derivable type classes.  This is now off by default,
281 #               but we switch it on for the libraries so that we generate
282 #               the code in case someone importing wants it
283
284 GhcLibHcOpts=-O2 -XGenerics
285
286 # Win32 only: Enable the RTS and libraries to be built as DLLs
287 DLLized=@EnableWin32DLLs@
288
289 # Strip local symbols from libraries?  This can make the libraries smaller,
290 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
291 #
292 StripLibraries=NO
293
294 # These are the URL patterns that Haddock uses to generate the "Source
295 # File" links on each page.
296 PackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
297
298 # ----------------------------------------------------------------------------
299 # Object-file splitting
300 #
301 #       Set SplitObjs=YES or NO in your build.mk
302 #
303 #       Don't use -split-objs in in GhcLibHcOpts, because the build
304 #               system needs to do other special magic if you are
305 #               doing object-file splitting
306
307 ArchSupportsSplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),YES,NO))
308
309 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
310 SupportsSplitObjs=$(strip $(if $(filter YES,$(ArchSupportsSplitObjs)),\
311                     $(if $(filter NO,$(BootingFromHc)),\
312                       $(if $(filter NO,$(GhcUnregisterised)),\
313                         YES,\
314                         NO),\
315                       NO),\
316                     NO))
317
318 # By default, enable SplitObjs for the libraries if this build supports it
319 SplitObjs=$(SupportsSplitObjs)
320
321 # Math library
322 LIBM=@LIBM@
323
324 # .NET interop support?
325 #
326 DotnetSupport=NO
327
328 # Build unix package?
329 #
330 GhcLibsWithUnix=@GhcLibsWithUnix@
331
332 # ----------------------------------------------------------------------------
333 # Options for GHC's RTS
334
335 # For an optimised RTS (you probably don't want to change these; we build
336 # a debugging RTS by default now.  Use -debug to get it).
337 GhcRtsHcOpts=-optc-O2
338 GhcRtsCcOpts=-fomit-frame-pointer
339
340 # Include the front panel code?  Needs GTK+.
341 GhcRtsWithFrontPanel = NO
342
343 # Include support for CPU performance counters via the PAPI library in the RTS?
344 # (PAPI: http://icl.cs.utk.edu/papi/)
345 GhcRtsWithPapi = NO
346 PapiLibDir=
347 PapiIncludeDir=
348
349 ################################################################################
350 #
351 #               Paths (see paths.mk)
352 #
353 ################################################################################
354
355 # Directory used by GHC (and possibly other tools) for storing
356 # temporary files.  If your TMPDIR isn't big enough, either override
357 # this in build.mk or set your environment variable "TMPDIR" to point
358 # to somewhere with more space.  (TMPDIR=. is a good choice).
359
360 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
361 # override an environment variable with the value of the make variable
362 # of the same name (if it exists) when executing sub-processes, so
363 # setting the TMPDIR env var would have no effect in the build tree.
364
365 DEFAULT_TMPDIR          = /tmp
366 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
367 DEFAULT_TMPDIR          = /C/TEMP
368 endif
369 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
370 DEFAULT_TMPDIR          = /C/TEMP
371 endif
372
373 BIN_DIST_TOPDIR_ABS=$(TOP)
374 BIN_DIST_DIR=$(BIN_DIST_TOPDIR_ABS)/$(BIN_DIST_NAME)
375
376 BIN_DIST_NAME=ghc-$(ProjectVersion)
377 BIN_DIST_TAR=$(TOP)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar
378 BIN_DIST_TAR_BZ2=$(BIN_DIST_TAR).bz2
379 BIN_DIST_PREP_DIR=$(TOP)/bindist-prep
380 BIN_DIST_PREP=$(BIN_DIST_PREP_DIR)/$(BIN_DIST_NAME)
381 BIN_DIST_LIST=$(TOP)/bindist-list
382
383 WINDOWS_INSTALLER_BASE = ghc-$(ProjectVersion)-i386-windows
384 WINDOWS_INSTALLER = $(WINDOWS_INSTALLER_BASE)$(exeext)
385
386 # Definition of installation directories, we don't use half of these, but since
387 # the configure script has them on offer while passing through, we might as well
388 # set them. Note that we have to be careful, because the GNU coding standards
389 # have changed a bit over the course of time, and autoconf development reflects
390 # this.
391 #
392 # A little bit of history regarding autoconf and GNU coding standards, use this
393 # as a cheat-sheet for the stuff below:
394 #
395 # variable    | default < 2.60     | default >= 2.60
396 # ------------+--------------------+--------------------------------------
397 # exec_prefix | ${prefix}          | ${prefix}
398 # libdir      | ${exec_prefix}/lib | ${exec_prefix}/lib
399 # datarootdir | NONE!              | ${prefix}/share
400 # datadir     | ${prefix}/share    | ${datarootdir}
401 # infodir     | ${prefix}/info     | ${datarootdir}/info
402 # mandir      | ${prefix}/man      | ${datarootdir}/man
403 # docdir      | NONE!              | ${datarootdir}/doc/${PACKAGE_TARNAME}
404 # htmldir     | NONE!              | ${docdir}
405 # dvidir      | NONE!              | ${docdir}
406 # pdfdir      | NONE!              | ${docdir}
407 # psdir       | NONE!              | ${docdir}
408 #
409 # NOTE: The default e.g. ${docdir} above means that autoconf substitutes the
410 # string "${docdir}", not the value of docdir! This is crucial for the GNU
411 # coding standards.
412
413 # This gets used in the default docdir when autoconf >= 2.60 is used
414 PACKAGE_TARNAME := @PACKAGE_TARNAME@
415
416 prefix          := @prefix@
417
418 # New autoconf (>= 2.60?) make a configure with a --datarootdir=DIR flag.
419 # However, in order to support older autoconf's we don't use it.
420 # datarootdir is set lower down instead.
421 # But, as datadir is defined in terms of datarootdir, we also need to
422 # set it to the value (if any) that configure gives it here.
423 datarootdir     := @datarootdir@
424
425 exec_prefix     := @exec_prefix@
426 bindir          := @bindir@
427 datadir0        := @datadir@
428 libdir0         := @libdir@
429 includedir      := @includedir@
430 mandir          := @mandir@
431 dynlibdir       := @libdir@
432
433 ifeq "$(RelocatableBuild)" "YES"
434
435 # Hack: our directory layouts tend to be different on Windows, so
436 # hack around configure's bogus assumptions here.
437 datarootdir := $(prefix)
438 datadir     := $(prefix)/lib
439 libdir      := $(prefix)/lib
440
441 docdir    := $(prefix)/doc
442 htmldir   := $(docdir)
443 dvidir    := $(docdir)
444 pdfdir    := $(docdir)
445 psdir     := $(docdir)
446
447 else
448
449 # Unix: override libdir and datadir to put ghc-specific stuff in
450 # a subdirectory with the version number included.
451 #
452 # datadir is set to libdir here as GHC needs package.conf and unlit
453 # to be in the same place (and things like ghc-pkg need to agree on
454 # where package.conf is, so we just set it globally).
455 #
456 datarootdir := $(datadir0)
457 libdir      := $(libdir0)/ghc-$(ProjectVersion)
458 datadir     := $(libdir)
459
460 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
461 # However, in order to support older autoconf's we don't use them.
462
463 #docdir    := @docdir@
464 #htmldir   := @htmldir@
465 #dvidir    := @dvidir@
466 #pdfdir    := @pdfdir@
467 #psdir     := @psdir@
468
469 docdir    := $(datarootdir)/doc/ghc
470 htmldir   := $(docdir)
471 dvidir    := $(docdir)
472 pdfdir    := $(docdir)
473 psdir     := $(docdir)
474
475 endif # Windows
476
477 headerdir := $(libdir)/include
478
479 # Default place for putting interface files is $(libdir)
480 # (overriden for packages in package.mk)
481 ifacedir                = $(libdir)
482
483 # NOTE: by intention, libexecdir and libdir point to 
484 # the same place.
485 #  => Only way to override this is to set libexecdir= on the command line.
486 #     (NOTE: configure script setting is ignored).
487 libexecdir              = $(libdir)
488
489 #-----------------------------------------------------------------------------
490 # install configuration
491
492 #
493 # Set this to have files installed with a specific owner
494 #
495 INSTALL_OWNER =
496
497
498 # Set this to have files installed with a specific group
499 #
500 INSTALL_GROUP =
501
502 #
503 # Invocations of `install' for the four different classes
504 # of targets:
505 #
506 INSTALL_PROGRAM = $(INSTALL) -m 755
507 INSTALL_SCRIPT  = $(INSTALL) -m 755
508 INSTALL_SHLIB   = $(INSTALL) -m 755
509 INSTALL_DATA    = $(INSTALL) -m 644
510 INSTALL_HEADER  = $(INSTALL) -m 644
511 INSTALL_MAN     = $(INSTALL) -m 644
512 INSTALL_DIR     = $(MKDIRHIER)
513
514 #
515 # runhaskell and hsc2hs are special, in that other compilers besides
516 # GHC might provide them.  Systems with a package manager often come
517 # with tools to manage this kind of clash, e.g. RPM's
518 # update-alternatives.  When building a distribution for such a system,
519 # we recommend setting both of the following to 'YES'.
520 #
521 # NO_INSTALL_RUNHASKELL = YES
522 # NO_INSTALL_HSC2HS     = YES
523 #
524 # NB. we use negative tests here because for binary-distributions we cannot
525 # test build-time variables at install-time, so they must default to on.
526
527 # -----------------------------------------------------------------------------
528 # Utilities programs: flags 
529
530 # If you want to give any standard flags to pretty much any utility
531 # (see utils.mk for a complete list), by adding a line here
532 #
533 #       SRC_P_OPTS += ...
534 #
535 # where P is the utility. For example, to add -O to all Haskell
536 # compilations, 
537 #
538 #       SRC_HC_OPTS += -O
539
540 SRC_HC_OPTS += -H32m -O
541
542 # These flags make flex 8-bit
543 SRC_FLEX_OPTS   += -8
544
545 # Default fptools options for dllwrap.
546 SRC_BLD_DLL_OPTS += --target=i386-mingw32
547
548 # Flags for CPP when running GreenCard on .pgc files
549 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
550
551
552 # -----------------------------------------------------------------------------
553 # Names of programs in the GHC tree
554 #
555 #      xxx_PGM          the name of an executable, without the path
556 #      xxx              the executable relative to the current dir
557
558 GHC_UNLIT_PGM           = unlit$(exeext)
559 GHC_HP2PS_PGM           = hp2ps$(exeext)
560 GHC_GHCTAGS_PGM         = ghctags$(exeext)
561 GHC_HSC2HS_PGM          = hsc2hs$(exeext)
562 GHC_TOUCHY_PGM          = touchy$(exeext)
563 GHC_MANGLER_PGM         = ghc-asm
564 GHC_SPLIT_PGM           = ghc-split
565 GHC_SYSMAN_PGM          = SysMan
566 GHC_GENPRIMOP_PGM       = genprimopcode$(exeext)
567 GHC_GENAPPLY_PGM        = genapply$(exeext)
568 GHC_CABAL_PGM           = ghc-cabal$(exeext)
569 GHC_PKG_PGM             = ghc-pkg$(exeext)
570 GHC_MKDEPENDC_PGM       = mkdependC
571 GHC_LTX_PGM             = ltx$(exeext)
572 GHC_MKDIRHIER_PGM       = mkdirhier
573 GHC_LNDIR_PGM           = lndir
574 GHC_DUMMY_GHC_PGM       = dummy-ghc$(exeext)
575
576 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
577 GHC_CP                  = "xcopy /y"
578 GHC_PERL                = perl
579 else
580 GHC_CP                  = $(CP)
581 GHC_PERL                = $(PERL)
582 endif
583
584 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
585 MANGLER                 = $(INPLACE_LIB)/$(GHC_MANGLER_PGM)
586 SPLIT                   = $(INPLACE_LIB)/$(GHC_SPLIT_PGM)
587 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
588 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
589 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
590
591 UNLIT                   = $(INPLACE_LIB)/$(GHC_UNLIT_PGM)
592 TOUCHY                  = $(INPLACE_LIB)/$(GHC_TOUCHY_PGM)
593 MKDIRHIER               = $(INPLACE_BIN)/$(GHC_MKDIRHIER_PGM)
594 MKDEPENDC               = $(INPLACE_BIN)/$(GHC_MKDEPENDC_PGM)
595 GHC_CABAL_INPLACE       = $(INPLACE_BIN)/$(GHC_CABAL_PGM)
596 GENAPPLY_INPLACE        = $(INPLACE_BIN)/$(GHC_GENAPPLY_PGM)
597 GHC_PKG_INPLACE         = $(INPLACE_BIN)/$(GHC_PKG_PGM)
598 GHCTAGS_INPLACE         = $(INPLACE_BIN)/$(GHC_GHCTAGS_PGM)
599 HSC2HS_INPLACE          = $(INPLACE_BIN)/$(GHC_HSC2HS_PGM)
600 GENPRIMOP_INPLACE       = $(INPLACE_BIN)/$(GHC_GENPRIMOP_PGM)
601 DUMMY_GHC_INPLACE       = $(INPLACE_BIN)/$(GHC_DUMMY_GHC_PGM)
602
603 GENERATED_FILE  = chmod a-w
604 EXECUTABLE_FILE = chmod +x
605
606 #-----------------------------------------------------------------------------
607 # Haskell compilers and mkdependHS
608
609 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
610 # compilers, if available.
611 #
612 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
613 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
614 #
615 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
616 # (because the version numbers have to be calculated).
617
618 GHC := @WithGhc@
619 # If we have a make dependency on c:/ghc/ghc, and the file is actually
620 # called c:/ghc/ghc.exe, then make will think that ghc doesn't exist
621 # and that it doesn't know how to create it.
622 ifneq "$(wildcard $(GHC).exe)" ""
623 GHC := $(GHC).exe
624 endif
625
626 GhcDir          = $(dir $(GHC))
627
628 # Set to YES if $(GHC) has the editline package installed
629 GhcHasEditline  = @GhcHasEditline@
630
631 HBC             = @HBC@
632 NHC             = @NHC@
633
634 # Sometimes we want to invoke ghc from the build tree in different
635 # places (eg. it's handy to have a nofib & a ghc build in the same
636 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
637
638 GHC_INPLACE = $(GHC_STAGE1)
639
640 GHC_STAGE0_ABS = $(GHC)
641 GHC_STAGE1_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage1$(exeext)
642 GHC_STAGE2_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage2$(exeext)
643 GHC_STAGE3_ABS = $(TOP)/$(INPLACE_BIN)/ghc-stage3$(exeext)
644
645 GHC_STAGE0  = $(GHC)
646 GHC_STAGE1  = $(INPLACE_BIN)/ghc-stage1$(exeext)
647 GHC_STAGE2  = $(INPLACE_BIN)/ghc-stage2$(exeext)
648 GHC_STAGE3  = $(INPLACE_BIN)/ghc-stage3$(exeext)
649
650 # Install stage 2 by default, can be changed to 3
651 INSTALL_GHC_STAGE=2
652
653 BOOTSTRAPPING_CONF = libraries/bootstrapping.conf
654
655 INPLACE_PACKAGE_CONF = $(INPLACE_LIB)/package.conf
656
657 GhcVersion      = @GhcVersion@
658 GhcPatchLevel   = @GhcPatchLevel@
659 GhcMajVersion   = @GhcMajVersion@
660 GhcMinVersion   = @GhcMinVersion@
661
662 ghc_ge_609 = @ghc_ge_609@
663
664 # Canonicalised ghc version number, used for easy (integer) version
665 # comparisons.  We must expand $(GhcMinVersion) to two digits by
666 # adding a leading zero if necessary:
667 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
668 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
669 else
670 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
671 endif
672
673 #-----------------------------------------------------------------------------
674 # C compiler
675 #
676 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
677 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
678 # needs to know which gcc you're using in order to perform its tests.
679
680 HaveGcc         = @HaveGcc@
681 UseGcc          = YES
682 WhatGccIsCalled = @WhatGccIsCalled@
683 GccVersion      = @GccVersion@
684 ifeq "$(strip $(HaveGcc))" "YES"
685 ifneq "$(strip $(UseGcc))"  "YES"
686   CC    = cc
687 else
688   CC    = $(WhatGccIsCalled)
689 endif
690 endif
691
692 # default C compiler and linker flags
693 SRC_CC_OPTS = @SRC_CC_OPTS@
694 SRC_LD_OPTS = @SRC_LD_OPTS@
695
696 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
697 SRC_CC_OPTS += -G0
698 endif
699
700 SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS)))
701 SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))
702
703 #-----------------------------------------------------------------------------
704 # GMP Library (version 2.0.x or above)
705 #
706 HaveLibGmp      = @HaveLibGmp@
707 LibGmp          = @LibGmp@
708
709 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
710 GMP_LIB_DIRS=@GMP_LIB_DIRS@
711
712 #-----------------------------------------------------------------------------
713 # GMP framework (Mac OS X)
714 #
715 HaveFrameworkGMP = @HaveFrameworkGMP@
716
717 #-----------------------------------------------------------------------------
718 # Mingwex Library
719 #
720 HaveLibMingwEx  = @HaveLibMingwEx@
721
722 #-----------------------------------------------------------------------------
723 # Flex (currently unused, could be moved to glafp-utils)
724
725 # FLEX                  = @LEX@
726 # Don't bother with -lfl, we define our own yywrap()s anyway.
727 # FLEX_LIB              = 
728 #WAS:FLEX_LIB           = @LEXLIB@
729
730 #-----------------------------------------------------------------------------
731 # Other standard (ha!) Unix utilities
732
733 AR                      = @ArCmd@
734 ArSupportsInput         = @ArSupportsInput@
735 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
736 BASH                    = /usr/local/bin/bash
737
738 CONTEXT_DIFF            = @ContextDiffCmd@
739 CP                      = cp
740 CPP                     = @CPP@ @CPPFLAGS@
741 CTAGS                   = $(ETAGS)
742 #
743 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
744 # behave plausibly on Haskell sources.
745 #
746 RAWCPP_FLAGS            = -undef -traditional
747 FIND                    = @FindCmd@
748 SORT                    = @SortCmd@
749 INSTALL                 = @INSTALL@
750 #
751 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
752 # install-sh script (if chosen). This not terribly useful to us, so we convert
753 # it into an abs. path.
754
755 INSTALL                 := $(subst .././install-sh,$(TOP)/install-sh,$(INSTALL))
756 LATEX                   = latex
757 HEVEA                   = hevea
758 HACHA                   = hacha
759 LN_S                    = @LN_S@
760 MANMACROS               = -man
761 MSMACROS                = -ms
762 MV                      = mv
763 NROFF                   = nroff
764 PERL                    = @PerlCmd@
765 PYTHON                  = @PythonCmd@
766 PIC                     = pic
767 PREPROCESSCMD           = $(CC) -E
768 RANLIB                  = @RANLIB@
769 SED                     = @SedCmd@
770 SHELL                   = /bin/sh
771
772 LD                      = @LdCmd@
773
774 # Some ld's support the -x flag and some don't, so the configure
775 # script detects which we have and sets LdXFlag to "-x" or ""
776 # respectively.
777 LD_X                    = @LdXFlag@
778
779 # GNU ld supports input via a linker script, which is useful to avoid
780 # overflowing command-line length limits.
781 LdIsGNULd               = @LdIsGNULd@
782
783 # On MSYS, building with SplitObjs=YES fails with 
784 #   ar: Bad file number
785 # see #3201.  We need to specify a smaller max command-line size
786 # to work around it.  32767 doesn't work; 30000 does.
787 ifeq "$(Windows)" "YES"
788 XARGS = xargs -s 30000
789 else
790 XARGS = xargs
791 endif
792
793 #
794 # In emergency situations, REAL_SHELL is used to perform shell commands
795 # from within the ghc driver script, by scribbling the command line to
796 # a temp file and then having $(REAL_SHELL) execute it. 
797 #
798 # The reason for having to do this is that overly long command lines
799 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
800 # 2.5.1), which is why this backdoor is provided. The situation of overly
801 # long command lines is either encountered while doing `make boot' in compiler/, 
802 # or when linking the compiler binary (`hsc'). 
803 #
804 # We do not use SHELL to execute long commands, as `make' will more than likely
805 # override whatever setting you have in your environment while executing. 
806
807 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
808 # as it is SHELL that will show up the bogosity in the first place, but setting
809 # it to anything else isn't really portable.
810 #
811 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
812 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
813 # command shell.
814 #
815 REAL_SHELL=$(SHELL)
816 SIZE                    = size
817 STRIP                   = strip
818 PATCH                   = @PatchCmd@
819 TAR                     = @TarCmd@
820 ZIP                     = zip
821
822 HSCOLOUR = @HSCOLOUR@
823
824 #
825 # This is special to literate/, ToDo: add literate-specific
826 # configure setup to literate/.
827 #
828 TBL                     = tbl
829 TEX                     = tex
830 TGRIND                  = tgrind
831 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
832 TIB                     = tib
833
834 TIME                    = @TimeCmd@
835 TROFF                   = troff
836 UNAME                   = uname
837
838 # GTK+
839 GTK_CONFIG = @GTK_CONFIG@
840
841 # Set this if you want to use Inno Setup to build a Windows installer
842 # when you make a bindist
843 ISCC                    =
844
845 #-----------------------------------------------------------------------------
846 # DocBook XML stuff
847
848 BUILD_DOCBOOK_HTML       = @BUILD_DOCBOOK_HTML@
849 BUILD_DOCBOOK_PS         = @BUILD_DOCBOOK_PS@
850 BUILD_DOCBOOK_PDF        = @BUILD_DOCBOOK_PDF@
851 DBLATEX                  = @DblatexCmd@
852 XSLTPROC                 = @XsltprocCmd@
853 XMLLINT                  = @XmllintCmd@
854 HAVE_DOCBOOK_XSL         = @HAVE_DOCBOOK_XSL@
855 XSLTPROC_HTML_STYLESHEET = http://docbook.sourceforge.net/release/xsl/current/html/chunk.xsl
856 XSLTPROC_LABEL_OPTS      = --stringparam toc.section.depth 3 \
857                            --stringparam section.autolabel 1 \
858                            --stringparam section.label.includes.component.label 1
859
860 #-----------------------------------------------------------------------------
861 #               FPtools support software
862
863 BLD_DLL                 = dllwrap
864
865 #
866 # ghc-pkg
867 #
868 GHC_PKG                 = @GhcPkgCmd@
869
870 #
871 # GreenCard
872 #
873 GREENCARD               = @GreenCardCmd@
874 GREENCARD_VERSION       = @GreenCardVersion@            
875
876 #
877 # Happy
878 #
879 HAPPY                   = @HappyCmd@
880 HAPPY_VERSION           = @HappyVersion@                
881 #
882 # Options to pass to Happy when we're going to compile the output with GHC
883 #
884 SRC_HAPPY_OPTS          = -agc --strict
885
886 # Temp. to work around performance problems in the HEAD around 8/12/2003,
887 # A Happy compiled with this compiler needs more stack.
888 SRC_HAPPY_OPTS          += +RTS -K2m -RTS
889
890 #
891 # Alex
892 #
893 ALEX                    = @AlexCmd@
894 ALEX_VERSION            = @AlexVersion@         
895 #
896 # Options to pass to Happy when we're going to compile the output with GHC
897 #
898 SRC_ALEX_OPTS           = -g
899
900 HSTAGS = @HstagsCmd@
901
902 # Should we build haddock docs?
903 HADDOCK_DOCS = YES
904 # And HsColour the sources?
905 ifeq "$(HSCOLOUR)" ""
906 HSCOLOUR_SRCS = NO
907 else
908 HSCOLOUR_SRCS = YES
909 endif
910
911 #
912 # Options for compiling in different `ways'. 
913
914 # To configure up your own way, have a look at some of the standard ways
915 # such as profiling, and create your own set of WAY_*_OPTS defs below.
916 # After having done that, add your way string to WAYS, and after having
917 # run the configure script, the different projects will add the new way
918 # to the list of ways they support.
919 #
920
921 #
922 # Definitions of the different ways:
923 #   
924 #   * their name:
925 #          - tag, e.g., p
926 #          - description, e.g., profiling
927 #   * what they mean to the driver:
928 #          - WAY_p_HC_OPTS gives the list of command-line options
929 #            to the driver.
930 #
931
932 #
933 # The ways currently defined.
934 #
935 ALL_WAYS=v p t l s mp mg debug dyn thr thr_l debug_dyn thr_dyn thr_debug_dyn thr_p thr_debug thr_debug_l
936 USER_WAYS=a b c d e f g h j k l m n o A B
937
938 #
939 # The following ways currently have treated specially, p t mg,
940 # as the driver script treats these guys specially and needs to carefully be told
941 # about the options for these. Hence, we hide the required command line options
942 # for these in the driver, as this is the only place they are needed.
943
944 # If you want to add to these default options, fill in the variables below:
945
946 # Way 'v':
947 WAY_v_NAME=vanilla
948 WAY_v_HC_OPTS= 
949
950 # Way 'p':
951 WAY_p_NAME=profiling
952 WAY_p_HC_OPTS= -prof
953
954 # Way 't':
955 WAY_t_NAME=ticky-ticky profiling
956 WAY_t_HC_OPTS= -ticky
957
958 # Way 'l':
959 WAY_l_NAME=event logging
960 WAY_l_HC_OPTS= -eventlog
961
962 # Way `mp': 
963 WAY_mp_NAME=parallel
964 WAY_mp_HC_OPTS=-parallel
965
966 # Way `mg': 
967 WAY_mg_NAME=GranSim
968 WAY_mg_HC_OPTS=-gransim
969
970 #
971 # These ways apply to the RTS only:
972 #
973
974 # Way 'thr':
975 WAY_thr_NAME=threaded
976 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
977
978 # Way 'thr_p':
979 WAY_thr_p_NAME=threaded profiled
980 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
981
982 # Way 'thr_l':
983 WAY_thr_l_NAME=threaded event logging
984 WAY_thr_l_HC_OPTS=-optc-DTHREADED_RTS -eventlog
985
986 # Way 'debug':
987 WAY_debug_NAME=debug
988 WAY_debug_HC_OPTS=-optc-DDEBUG
989
990 # Way 'debug_p':
991 WAY_debug_p_NAME=debug profiled
992 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
993
994 # Way 'debug_t':
995 WAY_debug_t_NAME=debug ticky-ticky profiling
996 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
997
998 # Way 'thr_debug':
999 WAY_thr_debug_NAME=threaded
1000 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1001
1002 # Way 'thr_debug_p':
1003 WAY_thr_debug_p_NAME=threaded debug profiling
1004 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1005
1006 # Way 'thr_debug_l':
1007 WAY_thr_debug_l_NAME=threaded debug event logging
1008 WAY_thr_debug_l_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -eventlog
1009
1010 # Way 'dyn': build dynamic shared libraries
1011 WAY_dyn_NAME=dyn
1012 WAY_dyn_HC_OPTS=-fPIC -dynamic
1013 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
1014
1015 # Way 'thr_dyn':
1016 WAY_thr_dyn_NAME=thr_dyn
1017 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
1018
1019 # Way 'thr_debug_dyn':
1020 WAY_thr_debug_dyn_NAME=thr_dyn
1021 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
1022
1023 # Way 'debug_dyn':
1024 WAY_debug_dyn_NAME=thr_dyn
1025 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1026
1027 #
1028 # Add user-way configurations here:
1029 #
1030 WAY_A_NAME=
1031 WAY_A_HC_OPTS=
1032
1033 WAY_B_NAME=
1034 WAY_B_HC_OPTS=
1035
1036 WAY_a_NAME=
1037 WAY_a_HC_OPTS=
1038
1039 WAY_b_NAME=
1040 WAY_b_HC_OPTS=
1041
1042 WAY_c_NAME=
1043 WAY_c_HC_OPTS=
1044
1045 WAY_d_NAME=
1046 WAY_d_HC_OPTS=
1047
1048 WAY_e_NAME=
1049 WAY_e_HC_OPTS=
1050
1051 WAY_f_NAME=
1052 WAY_f_HC_OPTS=
1053
1054 WAY_g_NAME=
1055 WAY_g_HC_OPTS=
1056
1057 WAY_h_NAME=
1058 WAY_h_HC_OPTS=
1059
1060 WAY_j_NAME=
1061 WAY_j_HC_OPTS=
1062
1063 WAY_k_NAME=
1064 WAY_k_HC_OPTS=
1065
1066 WAY_l_NAME=
1067 WAY_l_HC_OPTS=
1068
1069 WAY_m_NAME=
1070 WAY_m_HC_OPTS=
1071
1072 WAY_n_NAME=
1073 WAY_n_HC_OPTS=
1074
1075 WAY_o_NAME=
1076 WAY_o_HC_OPTS=
1077
1078 ################################################################################
1079 #
1080 #               31-bit-Int Core files
1081 #
1082 ################################################################################
1083
1084
1085 # It is possible to configure the compiler and prelude to support 31-bit
1086 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1087 # architecture.  Currently the only useful output from this option is external Core
1088 # files.  The following additions to your build.mk will produce the
1089 # 31-bit core output.  Note that this is *not* just a library "way"; the
1090 # compiler must be built a special way too.
1091
1092 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1093 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1094 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1095 # SplitObjs=NO
1096
1097 ################################################################################
1098 #
1099 #    Library configure arguments
1100 #
1101 ################################################################################
1102
1103 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1104
1105 ################################################################################
1106 #
1107 #    Bindist testing directory
1108 #
1109 ################################################################################
1110
1111 ifeq "$(Windows)" "YES"
1112 BIN_DIST_INST_SUBDIR = "install dir"
1113 else
1114 # I very much doubt that paths with spaces will work on Unix
1115 BIN_DIST_INST_SUBDIR = installed
1116 endif
1117
1118 BIN_DIST_INST_DIR = $(TOP)/bindisttest/$(BIN_DIST_INST_SUBDIR)
1119