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