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