249da9efe205d8f13196da6b2a67f7bfd8b4e9a8
[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 # This is one of only two files that configure generates (the other is config.h)
27 #
28
29 ifneq "$(findstring 3.7, $(MAKE_VERSION))" ""
30 ifeq "$(findstring 3.79.1, $(MAKE_VERSION))" ""
31 $(error GNU make version 3.79.1 or later is required.)
32 endif
33 endif
34
35 ################################################################################
36 #
37 # GHC Version
38 #
39
40 # ProjectVersion    is treated as a *string*
41 # ProjectVersionInt is treated as an *integer* (for cpp defines)
42
43 # Versioning scheme: A.B.C
44 #         A: major version, decimal, any number of digits
45 #         B: minor version, decimal, any number of digits
46 #         C: patchlevel, one digit, omitted if zero.
47 #
48 # ProjectVersionInt does *not* contain the patchlevel (rationale: this
49 # figure is used for conditional compilations, and library interfaces
50 # etc. are not supposed to change between patchlevels).
51 #
52 # The ProjectVersionInt is included in interface files, and GHC
53 # checks that it's reading interface generated by the same ProjectVersion
54 # as itself. It does this even though interface file syntax may not 
55 # change between versions.  Rationale: calling conventions or other 
56 # random .o-file stuff might change even if the .hi syntax doesn't
57
58 ProjectName       = @ProjectName@
59 ProjectTags       =
60 ProjectVersion    = @ProjectVersion@$(ProjectTags)
61 ProjectVersionInt = @ProjectVersionInt@
62 ProjectPatchLevel = @ProjectPatchLevel@
63
64 ################################################################################
65 #
66 #               Platform variables
67 #
68 ################################################################################
69
70 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
71 # specifier.  E.g. sparc-sun-solaris2
72 #
73 # Build  platform: the platform on which we are doing this build
74 # Host   platform: the platform on which these binaries will run
75 # Target platform: the platform for which this compiler will generate code
76 #
77 # We don't support build & host being different, because the build
78 # process creates binaries that are run during the build, and also
79 # installed.
80 #
81 # If host & target are different, then we are building a compiler
82 # which will generate intermediate .hc files to port to the target
83 # architecture for bootstrapping.  The libraries and stage 2 compiler
84 # will be built as HC files for the target system, and likely won't
85 # build on this host platform.
86 #
87 # An important invariant is that for any piece of source code, the
88 # platform on which the code is going to run is the HOST platform,
89 # and the platform on which we are building is the BUILD platform.
90 # Additionally for the compiler, the platform this compiler will
91 # generate code for is the TARGET.  TARGET is not meaningful outside
92 # the compiler sources.
93 #
94 # Guidelines for when to use HOST vs. TARGET:
95 #
96 #  - In the build system (Makefile, foo.mk), normally we should test
97 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
98 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
99 #    doesn't matter which is used.
100 #
101 #  - In the compiler itself, we should test HOST or TARGET depending
102 #    on whether the conditional relates to the code being generated, or
103 #    the platform on which the compiler is running.  See the section
104 #    on "Coding Style" in the commentary for more details.
105 #
106 #  - In all other code, we should be testing HOST only.
107 #
108 # NOTE: cross-compiling is not well supported by the build system.
109 # You have to do a lot of work by hand to cross compile: see the
110 # section on "Porting GHC" in the Building Guide.
111
112 HOSTPLATFORM                    = @HostPlatform@
113 TARGETPLATFORM                  = @TargetPlatform@
114 BUILDPLATFORM                   = @BuildPlatform@
115
116 # Hack alert:
117 # in one or two places, we need to get at the OS version (major and
118 # perhaps even minor), HostOS_Full is the OS name reported by
119 # AC_CANONICAL_SYSTEM.
120 #
121 HostPlatform_CPP                = @HostPlatform_CPP@
122 HostArch_CPP                    = @HostArch_CPP@
123 HostOS_CPP                      = @HostOS_CPP@
124 HostOS_Full                     = @HostOS_Full@
125 HostVendor_CPP                  = @HostVendor_CPP@
126
127 TargetPlatform_CPP              = @TargetPlatform_CPP@
128 TargetArch_CPP                  = @TargetArch_CPP@
129 TargetOS_CPP                    = @TargetOS_CPP@
130 TargetVendor_CPP                = @TargetVendor_CPP@
131
132 BuildPlatform_CPP               = @BuildPlatform_CPP@
133 BuildArch_CPP                   = @BuildArch_CPP@
134 BuildOS_CPP                     = @BuildOS_CPP@
135 BuildVendor_CPP                 = @BuildVendor_CPP@
136
137 @HostPlatform_CPP@_HOST           = 1
138 @TargetPlatform_CPP@_TARGET       = 1
139 @BuildPlatform_CPP@_BUILD         = 1
140
141 @HostArch_CPP@_HOST_ARCH          = 1
142 @TargetArch_CPP@_TARGET_ARCH      = 1
143 @BuildArch_CPP@_BUILD_ARCH        = 1
144
145 @HostOS_CPP@_HOST_OS              = 1
146 @TargetOS_CPP@_TARGET_OS          = 1
147 @BuildOS_CPP@_BUILD_OS            = 1
148
149 @HostVendor_CPP@_HOST_VENDOR      = 1
150 @TargetVendor_CPP@_TARGET_VENDOR  = 1
151 @BuildVendor_CPP@_BUILD_VENDOR    = 1
152
153 ################################################################################
154 #
155 #               Global configuration options
156 #
157 ################################################################################
158
159 # Leading underscores on symbol names in object files
160 # Valid options: YES/NO
161 #
162 LeadingUnderscore=@LeadingUnderscore@
163
164 # Pin a suffix on executables? If so, what (Windows only).
165 exeext=@exeext@
166 soext=@soext@
167
168 # Windows=YES if on a Windows platform
169 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""
170 Windows=YES
171 else
172 Windows=NO
173 endif
174
175 # BootingFromHc - build GHC and the libraries from .hc files?
176 BootingFromHc = @BootingFromHc@
177
178 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
179 # rather than registerised code, i.e., disable the mangler?
180 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
181
182 #
183 # Which ways should DocBook XML documents be built?
184 # options are: dvi ps pdf html chm HxS
185 #
186 XMLDocWays=
187
188 ################################################################################
189 #
190 # Variables that control how the compiler itself is built
191 #
192 ################################################################################
193
194 # The compiler used to build GHC is $(GHC).  To change the actual compiler
195 # used, re-configure with --with-ghc=<path-to-ghc>.
196
197 # Extra ways in which to build the compiler (for example, you might want to
198 # build a profiled compiler so you can see where it spends its time)
199 GhcCompilerWays=
200
201 # Extra option flags to pass to the compiler that compiles the compiler
202 # (Ones that are essential are wired into compiler/Makefile)
203 # Typical options to use here:
204 #
205 #       -DDEBUG         include debugging code and assertions (will make the
206 #                       compiler slower and produce debugging output, but useful
207 #                       for development)
208 #
209 #       -dcore-lint     check the types after every pass of the compiler;
210 #                       a pretty strong internal check of the compiler being
211 #                       used to compile GHC.  Useful when bootstrapping.
212 GhcHcOpts=-Rghc-timing
213
214 # Extra options added to specific stages of the compiler bootstrap.
215 # These are placed later on the command line, and may therefore
216 # override options from $(GhcHcOpts).
217 GhcStage1HcOpts=
218 GhcStage2HcOpts=
219 GhcStage3HcOpts=
220
221 ifneq "$(findstring thr, $(GhcRTSWays))" ""
222 GhcThreaded=YES
223 else
224 GhcThreaded=NO
225 endif
226 GhcProfiled=NO
227 GhcDebugged=NO
228
229 # Build a compiler that will build *unregisterised* libraries and
230 # binaries by default.  Unregisterised code is supposed to compile and
231 # run without any support for architecture-specific assembly mangling,
232 # register assignment or tail-calls, and is therefore a good way to get
233 # started when porting GHC to new architectures.
234 #
235 # If this is set to NO, you can still use the unregisterised way
236 # (way 'u') to get unregisterised code, but the default way will be
237 # registerised.
238 #
239 # NOTE: the stage1 compiler will be a registerised binary (assuming
240 # the compiler you build with is generating registerised binaries), but
241 # the stage2 compiler will be an unregisterised binary.
242 #
243 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
244 GhcUnregisterised=YES
245 else
246 GhcUnregisterised=NO
247 endif
248
249 # Build a compiler with a native code generator backend
250 # (as well as a C backend)
251 #
252 # Target platforms supported:
253 #   i386, powerpc
254 #   sparc has bitrotted
255 #   AIX is not supported 
256 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc)))
257 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
258
259 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
260 GhcWithNativeCodeGen=$(strip\
261     $(if $(filter YESYESNO,\
262                   $(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)),YES,NO))
263
264 # Include support for generating Java
265 GhcWithJavaGen=NO
266
267 HaveLibDL = @HaveLibDL@
268
269 # ArchSupportsSMP should be set iff there is support for that arch in
270 # includes/SMP.h
271 ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc powerpc)))
272
273 # lazy test, because $(GhcUnregisterised) might be set in build.mk later.
274 GhcWithSMP=$(strip $(if $(filter YESNO, $(ArchSupportsSMP)$(GhcUnregisterised)),YES,NO))
275
276 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
277 # has support for this OS/ARCH combination.
278
279 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
280 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
281
282 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
283 GhcWithInterpreter=YES
284 else 
285 GhcWithInterpreter=NO
286 endif
287
288 # GhcEnableTablesNextToCode tells us whether the target architecture
289 # supports placing info tables directly before the entry code
290 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
291 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
292 # code or not, which may be decided by options to the compiler later.
293 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
294 GhcEnableTablesNextToCode=NO
295 else
296 GhcEnableTablesNextToCode=YES
297 endif
298
299 #
300 # Building various ways?
301 # (right now, empty if not).
302 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
303 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
304
305 # Interface file version (hi-boot files only)
306 #
307 # A GHC built with HscIfaceFileVersion=n will look for 
308 #       M.hi-boot-n, and only then for 
309 #       M.hi-boot.
310 # (It'll be happy with the latter if the former doesn't exist.)
311 #
312 #
313 # This variable is used ONLY for hi-boot files.  Its only purpose is
314 # to allow you to have a single directory with multiple .hi-boot files
315 # for the same module, each corresponding to a different version of
316 # GHC.
317 #
318 # HscIfaceFileVersion is propagated to hsc via
319 # compiler/main/Config.hs, which is automatically generated by
320 # compiler/Makefile.
321
322 HscIfaceFileVersion=6
323
324 MakefileDeps=YES
325
326 #------------------------------------------------------------------------------
327 # Options for Libraries
328
329 # What extra ways to build the libraries in
330 # In addition to the normal sequential way, the default is to also build
331 # profiled prelude libraries.
332 # When booting from .hc files, turn this off.
333 ifeq "$(BootingFromHc)" "YES"
334 GhcLibWays=
335 else
336 GhcLibWays=p
337 endif
338
339 # In addition, the RTS is built in some further variations.  Ways that
340 # make sense here:
341
342 #   thr         : threaded
343 #   thr_p       : threaded profiled
344 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
345 #   debug_p     : debugging profiled
346 #   debug_u     : debugging unregisterised
347 #   thr_debug   : debugging threaded
348 #   thr_debug_p : debugging threaded profiled
349 #   t           : ticky-ticky profiling
350 #   debug_t     : debugging ticky-ticky profiling
351 #
352 GhcRTSWays=
353
354 # Usually want the debug version
355 ifeq "$(BootingFromHc)" "NO"
356 GhcRTSWays += debug 
357 endif
358
359 # Want the threaded versions unless we're unregisterised
360 # Defer the check until later by using $(if..), because GhcUnregisterised might
361 # be set in build.mk, which hasn't been read yet.
362 GhcRTSWays += $(if $(findstring NO, $(GhcUnregisterised)),thr thr_p thr_debug,)
363
364 # Option flags to pass to GHC when it's compiling modules in
365 # fptools/libraries.  Typically these are things like -O or
366 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
367 # the build system.
368 #
369 #       -O is pretty desirable, otherwise no inlining of prelude
370 #               things (incl "+") happens when compiling with this compiler
371 #
372 #       -fgenerics switches on generation of support code for 
373 #               derivable type classes.  This is now off by default,
374 #               but we switch it on for the libraries so that we generate
375 #               the code in case someone importing wants it
376
377 GhcLibHcOpts=-O -Rghc-timing -fgenerics
378
379 # Win32 only: Enable the RTS and libraries to be built as DLLs
380 DLLized=@EnableWin32DLLs@
381
382 # Strip local symbols from libraries?  This can make the libraries smaller,
383 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
384 #
385 StripLibraries=NO
386
387 # These are the URL patterns that Haddock uses to generate the "Source
388 # File" links on each page.
389 CorePackageSourceURL = http://darcs.haskell.org/ghc-6.6/packages/$(PACKAGE)/%{FILE}
390 ExtraPackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
391
392 # These are the packages required to be present in order to bootstrap GHC
393 # NB. must be synced with libraries/core-packages
394 CorePackages = base Cabal haskell98 readline regex-base regex-compat \
395                regex-posix parsec stm template-haskell unix Win32
396
397 # ----------------------------------------------------------------------------
398 # Object-file splitting
399 #
400 #       Set SplitObjs=YES or NO in your build.mk
401 #
402 #       Don't use -split-objs in in GhcLibHcOpts, because the build
403 #               system needs to do other special magic if you are
404 #               doing object-file splitting
405
406 # lazy test, so that $(GhcUnregisterised) can be set in build.mk
407 SplitObjs=$(strip $(if $(filter $(TargetArch_CPP),i386 x86_64 powerpc sparc),\
408                     $(if $(filter YES,$(BootingFromHC)),\
409                       NO,\
410                       $(if $(filter NO,$(GhcUnregisterised)),\
411                         YES,\
412                         NO)),\
413                     NO))
414
415 # Math library
416 LIBM=@LIBM@
417
418 # Build the ObjectIO ?
419 #
420 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
421
422 # .NET interop support?
423 #
424 DotnetSupport=@DotnetSupport@
425
426 # Build unix package?
427 #
428 GhcLibsWithUnix=@GhcLibsWithUnix@
429
430 # ----------------------------------------------------------------------------
431 # Options for GHC's RTS
432
433 # For an optimised RTS (you probably don't want to change these; we build
434 # a debugging RTS by default now.  Use -debug to get it).
435 GhcRtsHcOpts=-optc-O2
436 GhcRtsCcOpts=-fomit-frame-pointer
437
438 # Include the front panel code?  Needs GTK+.
439 GhcRtsWithFrontPanel = NO
440
441 # Include support for CPU performance counters via the PAPI library in the RTS?
442 # (PAPI: http://icl.cs.utk.edu/papi/)
443 GhcRtsWithPapi = NO
444 HavePapi = @HavePapi@
445
446 ################################################################################
447 #
448 #               nofib
449 #
450 #       nofib specific options
451 #
452 ################################################################################
453
454 WithNofibHc = $(GHC_INPLACE)
455
456 # NoFibSubDirs controls which set of tests should be run
457 # You can run one or more of
458 #       imaginary 
459 #       spectral
460 #       real
461 #       parallel
462 #       PRIVATE
463 #       PENDING
464 #       UNUSED
465 NoFibSubDirs = imaginary spectral real
466
467 # The different ways to build nofib. Default is just to mirror
468 # what is done for the ghc prelude libraries.
469 #
470 NoFibWays = $(GhcLibWays)
471
472 # Haskell compiler options for nofib
473 NoFibHcOpts = -O
474
475 # Number of times to run each program
476 NoFibRuns = 5
477
478 ################################################################################
479 #
480 #               Paths (see paths.mk)
481 #
482 ################################################################################
483
484 # Directory used by GHC (and possibly other tools) for storing
485 # temporary files.  If your TMPDIR isn't big enough, either override
486 # this in build.mk or set your environment variable "TMPDIR" to point
487 # to somewhere with more space.  (TMPDIR=. is a good choice).
488
489 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
490 # override an environment variable with the value of the make variable
491 # of the same name (if it exists) when executing sub-processes, so
492 # setting the TMPDIR env var would have no effect in the build tree.
493
494 DEFAULT_TMPDIR          = /tmp
495 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
496 DEFAULT_TMPDIR          = /C/TEMP
497 endif
498 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
499 DEFAULT_TMPDIR          = /C/TEMP
500 endif
501
502 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
503 FPTOOLS_TOP_ABS         = @hardtop@
504 # The platform specific version of 'hardtop'.
505 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
506
507 # This gets used in the default docdir
508 PACKAGE_TARNAME = @PACKAGE_TARNAME@
509
510 BIN_DIST_NAME=ghc-$(ProjectVersion)
511 BIN_DIST_TOPDIR=$(FPTOOLS_TOP_ABS)
512 BIN_DIST_DIR=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)
513 BIN_DIST_TARBALL=$(BIN_DIST_TOPDIR)/$(BIN_DIST_NAME)-$(TARGETPLATFORM).tar.bz2
514
515 #
516 # Installation directories, we don't use half of these,
517 # but since the configure script has them on offer while
518 # passing through, we might as well set them.
519
520 prefix                  = @prefix@
521 datarootdir             = @datarootdir@
522 exec_prefix             = @exec_prefix@
523 bindir                  = @bindir@
524 datadir0                = @datadir@
525 libdir0                 = @libdir@
526 includedir              = @includedir@
527 oldincludedir           = @oldincludedir@
528 mandir                  = @mandir@
529
530 ifeq "$(Windows)" "YES"
531
532 ifeq "$(strip $(prefix))" ""
533 prefix          = /c/ghc
534 endif
535
536 # Hack: our directory layouts tend to be different on Windows, so
537 # hack around configure's bogus assumptions here.
538 datadir         = $(prefix)
539 libdir          = $(prefix)
540
541 else
542
543 #
544 # Unix: override libdir and datadir to put ghc-specific stuff in
545 # a subdirectory with the version number included.
546 #
547 libdir     = $(libdir0)/ghc-$(ProjectVersion)
548 datadir    = $(datadir0)/ghc-$(ProjectVersion)
549
550 endif # Windows
551
552 headerdir = $(libdir)/include
553
554 # New autoconf (>= 2.60?) make a configure with --docdir=DIR etc flags.
555 # However, in order to support older autoconf's we don't use them.
556
557 #docdir    = @docdir@
558 #htmldir   = @htmldir@
559 #dvidir    = @dvidir@
560 #pdfdir    = @pdfdir@
561 #psdir     = @psdir@
562
563 docdir    = $(datarootdir)/doc/ghc
564 htmldir   = $(docdir)
565 dvidir    = $(docdir)
566 pdfdir    = $(docdir)
567 psdir     = $(docdir)
568
569 # Default place for putting interface files is $(libdir)
570 # (overriden for packages in package.mk)
571 ifacedir                = $(libdir)
572
573
574 # Default values for most of the above are only set if
575 # they weren't configured to anything in particular
576 # via the configure script. (i.e., we make no assumption
577 # that the autoconf-generated script will assign defaults
578 # to all of the above).
579 #
580 ifeq "$(strip $(exec_prefix))" ""
581 exec_prefix             = $(prefix)
582 endif
583 ifeq "$(strip $(bindir))" ""
584 bindir                  = $(exec_prefix)/bin
585 endif
586
587 #
588 # NOTE: by intention, libexecdir and libdir point to 
589 # the same place.
590 #  => Only way to override this is to set libexecdir= on the command line.
591 #     (NOTE: configure script setting is ignored).
592 libexecdir              = $(libdir)
593
594 ifeq "$(strip $(datadir))" ""
595 datadir         = $(prefix)/share
596 endif
597 ifeq "$(strip $(libdir))" ""
598 libdir          = $(exec_prefix)/lib
599 endif
600 ifeq "$(strip $(includedir))" ""
601 includedir      = $(prefix)/include
602 endif
603 ifeq "$(strip $(oldincludedir))" ""
604 oldincludedir   = /usr/include
605 endif
606 ifeq "$(strip $(mandir))" ""
607 mandir          = $(prefix)/man
608 endif
609
610 #-----------------------------------------------------------------------------
611 # install configuration
612
613 #
614 # Set this to have files installed with a specific owner
615 #
616 INSTALL_OWNER =
617
618
619 # Set this to have files installed with a specific group
620 #
621 INSTALL_GROUP =
622
623 #
624 # Invocations of `install' for the four different classes
625 # of targets:
626 #
627 INSTALL_PROGRAM = $(INSTALL) -m 755
628 INSTALL_SCRIPT  = $(INSTALL) -m 755
629 INSTALL_SHLIB   = $(INSTALL) -m 755
630 INSTALL_DATA    = $(INSTALL) -m 644
631 INSTALL_HEADER  = $(INSTALL) -m 644
632 INSTALL_MAN     = $(INSTALL) -m 644
633 INSTALL_DIR     = $(MKDIRHIER)
634
635 # -----------------------------------------------------------------------------
636 # Utilities programs: flags 
637
638 # If you want to give any standard flags to pretty much any utility
639 # (see utils.mk for a complete list), by adding a line here
640 #
641 #       SRC_P_OPTS += ...
642 #
643 # where P is the utility. For example, to add -O to all Haskell
644 # compilations, 
645 #
646 #       SRC_HC_OPTS += -O
647
648 SRC_HC_OPTS += -H16m -O
649
650 # These flags make flex 8-bit
651 SRC_FLEX_OPTS   += -8
652
653 SRC_INSTALL_BIN_OPTS    += -s
654
655 # lint gets all CPP's flags too
656 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
657 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
658
659 # Default fptools options for dllwrap.
660 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
661
662 # Flags for CPP when running GreenCard on .pgc files
663 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
664
665
666 ################################################################################
667 #
668 #       Layout of the source tree
669 #
670 ################################################################################
671
672 # Here we provide defines for the various directories in the source tree,
673 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
674 # indicates a directory relative to the top of the source tree, whereas
675 # $(GHC_FOO_DIR) is a directory relative to the current directory.
676 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
677
678 GHC_UTILS_DIR_REL       = utils
679 GHC_INCLUDE_DIR_REL     = includes
680 GHC_COMPILER_DIR_REL    = compiler
681 GHC_RTS_DIR_REL         = rts
682 GHC_UTILS_DIR_REL       = utils
683 GHC_DRIVER_DIR_REL      = driver
684 GHC_COMPAT_DIR_REL      = compat
685
686 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
687 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
688 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
689 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
690 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
691 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
692 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
693 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
694 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
695 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
696 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
697 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
698 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
699 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
700
701 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
702 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
703 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
704
705 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
706 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
707 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
708 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
709 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
710 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
711 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
712
713 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
714 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
715 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
716 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
717 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
718 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
719 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
720 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
721 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
722 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSC2HS_DIR_REL)
723 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
724 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
725 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
726 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
727
728 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
729 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
730 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
731
732 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
733 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
734 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
735 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
736 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
737 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
738 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
739
740 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
741 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
742 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
743 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
744 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
745 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
746 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
747 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
748 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
749 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
750 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
751 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
752 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
753 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
754
755 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
756 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
757 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
758
759 # -----------------------------------------------------------------------------
760 # Names of programs in the GHC tree
761 #
762 #      xxx_PGM          the name of an executable, without the path
763 #      xxx              the executable relative to the current dir
764
765 GHC_UNLIT_PGM           = unlit$(exeext)
766 GHC_HP2PS_PGM           = hp2ps
767 GHC_HSTAGS_PGM          = hasktags
768 GHC_HSC2HS_INPLACE_PGM  = hsc2hs-inplace
769 GHC_TOUCHY_PGM          = touchy$(exeext)
770 GHC_MANGLER_PGM         = ghc-asm
771 GHC_SPLIT_PGM           = ghc-split
772 GHC_SYSMAN_PGM          = SysMan
773 GHC_PKG_INPLACE_PGM     = ghc-pkg-inplace
774 GHC_GENPRIMOP_PGM       = genprimopcode
775 GHC_GENAPPLY_PGM        = genapply
776 GHC_MKDEPENDC_PGM       = mkdependC
777 GHC_LTX_PGM             = ltx
778 GHC_MKDIRHIER_PGM       = mkdirhier
779 GHC_LNDIR_PGM           = lndir
780 GHC_RUNTEST_PGM         = runstdtest
781
782 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
783 GHC_CP                  = "xcopy /y"
784 GHC_PERL                = perl
785 else
786 GHC_CP                  = $(CP)
787 GHC_PERL                = $(PERL)
788 endif
789
790 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
791 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
792 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
793 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/$(GHC_HSC2HS_INPLACE_PGM)
794 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
795 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
796 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
797 GHC_PKG_INPLACE         = $(GHC_PKG_DIR)/$(GHC_PKG_INPLACE_PGM)
798 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
799 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
800 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
801 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
802 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
803 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
804 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
805
806 GENERATED_FILE  = chmod a-w
807 EXECUTABLE_FILE = chmod +x
808
809 #-----------------------------------------------------------------------------
810 # Haskell compilers and mkdependHS
811
812 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
813 # compilers, if available.
814 #
815 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
816 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
817 #
818 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
819 # (because the version numbers have to be calculated).
820
821 GHC             = @WithGhc@
822 GhcDir          = $(dir $(GHC))
823
824 # Set to YES if $(GHC) has the readline package installed
825 GhcHasReadline  = @GhcHasReadline@
826
827 HBC             = @HBC@
828 NHC             = @NHC@
829
830 # Sometimes we want to invoke ghc from the build tree in different
831 # places (eg. it's handy to have a nofib & a ghc build in the same
832 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
833
834 GHC_INPLACE     = $(GHC_COMPILER_DIR)/ghc-inplace
835 GHC_STAGE1      = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
836 GHC_STAGE2      = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
837 GHC_STAGE3      = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
838
839 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
840
841 # We are using the stage1 compiler to compile Haskell code, set up
842 # some variables appropriately:
843 HC              =$(GHC_STAGE1)
844 MKDEPENDHS      =$(GHC_STAGE1)
845 GhcVersion      = @ProjectVersion@
846 GhcPatchLevel   = @ProjectPatchLevel@
847 # oops, these are wrong:
848 GhcMajVersion   = @GhcMajVersion@
849 GhcMinVersion   = @GhcMinVersion@
850
851 ghc_ge_601 = YES
852 ghc_ge_602 = YES
853 ghc_ge_603 = YES
854 ghc_ge_605 = YES
855 ghc_ge_607 = YES
856
857 else # not UseStage1 or BootingFromHc
858
859 HC              = @WithHc@
860 MKDEPENDHS      = $(GHC)
861 GhcVersion      = @GhcVersion@
862 GhcPatchLevel   = @GhcPatchLevel@
863 GhcMajVersion   = @GhcMajVersion@
864 GhcMinVersion   = @GhcMinVersion@
865
866 # Some useful GHC version predicates:
867 ghc_ge_601 = @ghc_ge_601@
868 ghc_ge_602 = @ghc_ge_602@
869 ghc_ge_603 = @ghc_ge_603@
870 ghc_ge_605 = @ghc_ge_605@
871 ghc_ge_607 = @ghc_ge_607@
872 endif
873
874 # Canonicalised ghc version number, used for easy (integer) version
875 # comparisons.  We must expand $(GhcMinVersion) to two digits by
876 # adding a leading zero if necessary:
877 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
878 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
879 else
880 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
881 endif
882
883 #-----------------------------------------------------------------------------
884 # C compiler
885 #
886 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
887 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
888 # needs to know which gcc you're using in order to perform its tests.
889
890 HaveGcc         = @HaveGcc@
891 UseGcc          = YES
892 WhatGccIsCalled = @WhatGccIsCalled@
893 GccVersion      = @GccVersion@
894 ifeq "$(strip $(HaveGcc))" "YES"
895 ifneq "$(strip $(UseGcc))"  "YES"
896   CC    = cc
897 else
898   CC    = $(WhatGccIsCalled)
899   GccDir = $(dir $(WhatGccIsCalled))
900 endif
901 endif
902
903 # default C compiler flags
904 SRC_CC_OPTS = @SRC_CC_OPTS@
905
906 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
907 SRC_CC_OPTS += -G0
908 endif
909
910 #-----------------------------------------------------------------------------
911 # GMP Library (version 2.0.x or above)
912 #
913 HaveLibGmp      = @HaveLibGmp@
914 LibGmp          = @LibGmp@
915
916 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
917 GMP_LIB_DIRS=@GMP_LIB_DIRS@
918
919 #-----------------------------------------------------------------------------
920 # GMP framework (Mac OS X)
921 #
922 HaveFrameworkGMP = @HaveFrameworkGMP@
923
924 #-----------------------------------------------------------------------------
925 # Mingwex Library
926 #
927 HaveLibMingwEx  = @HaveLibMingwEx@
928
929 #-----------------------------------------------------------------------------
930 # Flex (currently unused, could be moved to glafp-utils)
931
932 # FLEX                  = @LEX@
933 # Don't bother with -lfl, we define our own yywrap()s anyway.
934 # FLEX_LIB              = 
935 #WAS:FLEX_LIB           = @LEXLIB@
936
937 #-----------------------------------------------------------------------------
938 # Other standard (ha!) Unix utilities
939
940 AR                      = @ArCmd@
941 ArSupportsInput         = @ArSupportsInput@
942 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
943 BASH                    = /usr/local/bin/bash
944
945 CONTEXT_DIFF            = @ContextDiffCmd@
946 CP                      = cp
947 CPP                     = @CPP@ @CPPFLAGS@
948 CTAGS                   = $(ETAGS)
949 #
950 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
951 # behave plausibly on Haskell sources.
952 #
953 RAWCPP_FLAGS            = -undef -traditional
954 FIND                    = @FindCmd@
955 SORT                    = @SortCmd@
956 INSTALL                 = @INSTALL@
957 #
958 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
959 # install-sh script (if chosen). This not terribly useful to us, so we convert
960 # it into an abs. path.
961
962 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
963 LATEX                   = latex
964 HEVEA                   = hevea
965 HACHA                   = hacha
966 LN_S                    = @LN_S@
967 MANMACROS               = -man
968 MSMACROS                = -ms
969 MV                      = mv
970 NROFF                   = nroff
971 PERL                    = @PerlCmd@
972 PYTHON                  = @PythonCmd@
973 PIC                     = pic
974 PREPROCESSCMD           = $(CC) -E
975 RANLIB                  = @RANLIB@
976 RM                      = rm -f
977 SED                     = @SedCmd@
978 SHELL                   = /bin/sh
979
980 LD                      = @LdCmd@
981
982 # Some ld's support the -x flag and some don't, so the configure
983 # script detects which we have and sets LdXFlag to "-x" or ""
984 # respectively.
985 LD_X                    = @LdXFlag@
986
987 # GNU ld supports input via a linker script, which is useful to avoid
988 # overflowing command-line length limits.
989 LdIsGNULd               = @LdIsGNULd@
990
991 #
992 # In emergency situations, REAL_SHELL is used to perform shell commands
993 # from within the ghc driver script, by scribbling the command line to
994 # a temp file and then having $(REAL_SHELL) execute it. 
995 #
996 # The reason for having to do this is that overly long command lines
997 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
998 # 2.5.1), which is why this backdoor is provided. The situation of overly
999 # long command lines is either encountered while doing `make boot' in compiler/, 
1000 # or when linking the compiler binary (`hsc'). 
1001 #
1002 # We do not use SHELL to execute long commands, as `make' will more than likely
1003 # override whatever setting you have in your environment while executing. 
1004
1005 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
1006 # as it is SHELL that will show up the bogosity in the first place, but setting
1007 # it to anything else isn't really portable.
1008 #
1009 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
1010 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
1011 # command shell.
1012 #
1013 REAL_SHELL=$(SHELL)
1014 SIZE                    = size
1015 STRIP                   = strip
1016 TAR                     = @TarCmd@
1017 ZIP                     = zip
1018
1019 #
1020 # This is special to literate/, ToDo: add literate-specific
1021 # configure setup to literate/.
1022 #
1023 TBL                     = tbl
1024 TEX                     = tex
1025 TGRIND                  = tgrind
1026 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
1027 TIB                     = tib
1028
1029 TIME                    = @TimeCmd@
1030 TROFF                   = troff
1031 UNAME                   = uname
1032
1033 # GTK+
1034 GTK_CONFIG = @GTK_CONFIG@
1035
1036 # Set this if you want to use Inno Setup to build a Windows installer
1037 # when you make a bindist
1038 ISCC                    =
1039
1040 #-----------------------------------------------------------------------------
1041 # DocBook XML stuff
1042
1043 XSLTPROC                = @XsltprocCmd@
1044 XMLLINT                 = @XmllintCmd@
1045 FOP                     = @FopCmd@
1046 XMLTEX                  = @XmltexCmd@
1047 PDFXMLTEX               = @PdfxmltexCmd@
1048 DVIPS                   = @DvipsCmd@
1049
1050 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
1051
1052 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
1053                           --stringparam section.autolabel 1 \
1054                           --stringparam section.label.includes.component.label 1
1055
1056 #-----------------------------------------------------------------------------
1057 #               FPtools support software
1058
1059 BLD_DLL                 = dllwrap
1060
1061 #
1062 # .NET support software
1063 #
1064 ILX2IL                  = ilx2il
1065 ILASM                   = ilasm
1066
1067 #
1068 # ghc-pkg
1069 #
1070 GHC_PKG                 = @GhcPkgCmd@
1071
1072 #
1073 # GreenCard
1074 #
1075 GREENCARD               = @GreenCardCmd@
1076 GREENCARD_VERSION       = @GreenCardVersion@            
1077
1078 #
1079 # Happy
1080 #
1081 HAPPY                   = @HappyCmd@
1082 HAPPY_VERSION           = @HappyVersion@                
1083 #
1084 # Options to pass to Happy when we're going to compile the output with GHC
1085 #
1086 GHC_HAPPY_OPTS          = -agc
1087
1088 # Temp. to work around performance problems in the HEAD around 8/12/2003,
1089 # A Happy compiled with this compiler needs more stack.
1090 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
1091
1092 #
1093 # Alex
1094 #
1095 ALEX                    = @AlexCmd@
1096 ALEX_VERSION            = @AlexVersion@         
1097 #
1098 # Options to pass to Happy when we're going to compile the output with GHC
1099 #
1100 GHC_ALEX_OPTS           = -g
1101
1102 #
1103 # Haddock
1104
1105 HADDOCK                 = @HaddockCmd@
1106
1107 #
1108 # Options for compiling in different `ways'. 
1109
1110 # To configure up your own way, have a look at some of the standard ways
1111 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1112 # After having done that, add your way string to WAYS, and after having
1113 # run the configure script, the different projects will add the new way
1114 # to the list of ways they support.
1115 #
1116
1117 #
1118 # Definitions of the different ways:
1119 #   
1120 #   * their name:
1121 #          - tag, e.g., p
1122 #          - description, e.g., profiling
1123 #   * what they mean to the driver:
1124 #          - WAY_p_HC_OPTS gives the list of command-line options
1125 #            to the driver.
1126 #
1127
1128 #
1129 # The ways currently defined.
1130 #
1131 ALL_WAYS=p t u s mp mg a b c d e f g h i j k l m n o A B
1132 USER_WAYS=a b c d e f g h j k l m n o A B
1133
1134 #
1135 # The following ways currently have treated specially, p u t mg,
1136 # as the driver script treats these guys specially and needs to carefully be told
1137 # about the options for these. Hence, we hide the required command line options
1138 # for these in the driver, as this is the only place they are needed.
1139
1140 # If you want to add to these default options, fill in the variables below:
1141
1142 # Way 'i':
1143 WAY_i_NAME=ILX
1144 WAY_i_HC_OPTS= -filx -fruntime-types
1145
1146 # Way 'p':
1147 WAY_p_NAME=profiling
1148 WAY_p_HC_OPTS= -prof
1149
1150 # Way 't':
1151 WAY_t_NAME=ticky-ticky profiling
1152 WAY_t_HC_OPTS= -ticky
1153
1154 # Way `u':
1155 WAY_u_NAME=unregisterized (using portable C only)
1156 WAY_u_HC_OPTS=-unreg
1157
1158 # Way `mp': 
1159 WAY_mp_NAME=parallel
1160 WAY_mp_HC_OPTS=-parallel
1161
1162 # Way `mg': 
1163 WAY_mg_NAME=GranSim
1164 WAY_mg_HC_OPTS=-gransim
1165
1166 #
1167 # These ways apply to the RTS only:
1168 #
1169
1170 # Way 'thr':
1171 WAY_thr_NAME=threaded
1172 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1173
1174 # Way 'thr_p':
1175 WAY_thr_p_NAME=threaded profiled
1176 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1177
1178 # Way 'debug':
1179 WAY_debug_NAME=debug
1180 WAY_debug_HC_OPTS=-optc-DDEBUG
1181
1182 # Way 'debug_p':
1183 WAY_debug_p_NAME=debug profiled
1184 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1185
1186 # Way 'debug_u':
1187 WAY_debug_u_NAME=debug unregisterised
1188 WAY_debug_u_HC_OPTS=-optc-DDEBUG -unreg
1189
1190 # Way 'debug_t':
1191 WAY_debug_t_NAME=debug ticky-ticky profiling
1192 WAY_debug_t_HC_OPTS= -ticky -optc-DDEBUG
1193
1194 # Way 'thr_debug':
1195 WAY_thr_debug_NAME=threaded
1196 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1197
1198 # Way 'thr_debug_p':
1199 WAY_thr_debug_p_NAME=threaded
1200 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1201
1202 # Way 'dyn': build dynamic shared libraries
1203 WAY_dyn_NAME=dyn
1204 WAY_dyn_HC_OPTS=-fPIC -dynamic
1205 WAY_dyn_LIB_TARGET=libHSrts-gcc661.so
1206
1207 # Way 'thr_dyn':
1208 WAY_thr_dyn_NAME=thr_dyn
1209 WAY_thr_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS
1210
1211 # Way 'thr_debug_dyn':
1212 WAY_thr_debug_dyn_NAME=thr_dyn
1213 WAY_thr_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DTHREADED_RTS -optc-DDEBUG
1214
1215 # Way 'debug_dyn':
1216 WAY_debug_dyn_NAME=thr_dyn
1217 WAY_debug_dyn_HC_OPTS=-fPIC -dynamic -optc-DDEBUG
1218
1219 #
1220 # Add user-way configurations here:
1221 #
1222 WAY_A_NAME=
1223 WAY_A_HC_OPTS=
1224
1225 WAY_B_NAME=
1226 WAY_B_HC_OPTS=
1227
1228 WAY_a_NAME=
1229 WAY_a_HC_OPTS=
1230
1231 WAY_b_NAME=
1232 WAY_b_HC_OPTS=
1233
1234 WAY_c_NAME=
1235 WAY_c_HC_OPTS=
1236
1237 WAY_d_NAME=
1238 WAY_d_HC_OPTS=
1239
1240 WAY_e_NAME=
1241 WAY_e_HC_OPTS=
1242
1243 WAY_f_NAME=
1244 WAY_f_HC_OPTS=
1245
1246 WAY_g_NAME=
1247 WAY_g_HC_OPTS=
1248
1249 WAY_h_NAME=
1250 WAY_h_HC_OPTS=
1251
1252 WAY_j_NAME=
1253 WAY_j_HC_OPTS=
1254
1255 WAY_k_NAME=
1256 WAY_k_HC_OPTS=
1257
1258 WAY_l_NAME=
1259 WAY_l_HC_OPTS=
1260
1261 WAY_m_NAME=
1262 WAY_m_HC_OPTS=
1263
1264 WAY_n_NAME=
1265 WAY_n_HC_OPTS=
1266
1267 WAY_o_NAME=
1268 WAY_o_HC_OPTS=
1269
1270 ################################################################################
1271 #
1272 #               31-bit-Int Core files
1273 #
1274 ################################################################################
1275
1276
1277 # It is possible to configure the compiler and prelude to support 31-bit
1278 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1279 # architecture.  Currently the only useful output from this option is external Core
1280 # files.  The following additions to your build.mk will produce the
1281 # 31-bit core output.  Note that this is *not* just a library "way"; the
1282 # compiler must be built a special way too.
1283
1284 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1285 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1286 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1287 # SplitObjs=NO
1288
1289 ################################################################################
1290 #
1291 #    Library configure arguments
1292 #
1293 ################################################################################
1294
1295 CONFIGURE_ARGS = @CONFIGURE_ARGS@
1296