add comments about ticky RTS ways
[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 ProjectVersion    = @ProjectVersion@
60 ProjectVersionInt = @ProjectVersionInt@
61 ProjectPatchLevel = @ProjectPatchLevel@
62
63 ################################################################################
64 #
65 #               Platform variables
66 #
67 ################################################################################
68
69 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
70 # specifier.  E.g. sparc-sun-solaris2
71 #
72 # Build  platform: the platform on which we are doing this build
73 # Host   platform: the platform on which these binaries will run
74 # Target platform: the platform for which this compiler will generate code
75 #
76 # We don't support build & host being different, because the build
77 # process creates binaries that are run during the build, and also
78 # installed.
79 #
80 # If host & target are different, then we are building a compiler
81 # which will generate intermediate .hc files to port to the target
82 # architecture for bootstrapping.  The libraries and stage 2 compiler
83 # will be built as HC files for the target system, and likely won't
84 # build on this host platform.
85 #
86 # An important invariant is that for any piece of source code, the
87 # platform on which the code is going to run is the HOST platform,
88 # and the platform on which we are building is the BUILD platform.
89 # Additionally for the compiler, the platform this compiler will
90 # generate code for is the TARGET.  TARGET is not meaningful outside
91 # the compiler sources.
92 #
93 # Guidelines for when to use HOST vs. TARGET:
94 #
95 #  - In the build system (Makefile, foo.mk), normally we should test
96 #    $(HOSTPLATFORM).  There are some cases (eg. installation), where
97 #    we expect $(HOSTPLATFORM)==$(TARGETPLATFORM), so in those cases it
98 #    doesn't matter which is used.
99 #
100 #  - In the compiler itself, we should test HOST or TARGET depending
101 #    on whether the conditional relates to the code being generated, or
102 #    the platform on which the compiler is running.  See the section
103 #    on "Coding Style" in the commentary for more details.
104 #
105 #  - In all other code, we should be testing HOST only.
106 #
107 # NOTE: cross-compiling is not well supported by the build system.
108 # You have to do a lot of work by hand to cross compile: see the
109 # section on "Porting GHC" in the Building Guide.
110
111 HOSTPLATFORM                    = @HostPlatform@
112 TARGETPLATFORM                  = @TargetPlatform@
113 BUILDPLATFORM                   = @BuildPlatform@
114
115 # Hack alert:
116 # in one or two places, we need to get at the OS version (major and
117 # perhaps even minor), HostOS_Full is the OS name reported by
118 # AC_CANONICAL_SYSTEM.
119 #
120 HostPlatform_CPP                = @HostPlatform_CPP@
121 HostArch_CPP                    = @HostArch_CPP@
122 HostOS_CPP                      = @HostOS_CPP@
123 HostOS_Full                     = @HostOS_Full@
124 HostVendor_CPP                  = @HostVendor_CPP@
125
126 TargetPlatform_CPP              = @TargetPlatform_CPP@
127 TargetArch_CPP                  = @TargetArch_CPP@
128 TargetOS_CPP                    = @TargetOS_CPP@
129 TargetVendor_CPP                = @TargetVendor_CPP@
130
131 BuildPlatform_CPP               = @BuildPlatform_CPP@
132 BuildArch_CPP                   = @BuildArch_CPP@
133 BuildOS_CPP                     = @BuildOS_CPP@
134 BuildVendor_CPP                 = @BuildVendor_CPP@
135
136 @HostPlatform_CPP@_HOST           = 1
137 @TargetPlatform_CPP@_TARGET       = 1
138 @BuildPlatform_CPP@_BUILD         = 1
139
140 @HostArch_CPP@_HOST_ARCH          = 1
141 @TargetArch_CPP@_TARGET_ARCH      = 1
142 @BuildArch_CPP@_BUILD_ARCH        = 1
143
144 @HostOS_CPP@_HOST_OS              = 1
145 @TargetOS_CPP@_TARGET_OS          = 1
146 @BuildOS_CPP@_BUILD_OS            = 1
147
148 @HostVendor_CPP@_HOST_VENDOR      = 1
149 @TargetVendor_CPP@_TARGET_VENDOR  = 1
150 @BuildVendor_CPP@_BUILD_VENDOR    = 1
151
152 ################################################################################
153 #
154 #               Global configuration options
155 #
156 ################################################################################
157
158 # Leading underscores on symbol names in object files
159 # Valid options: YES/NO
160 #
161 LeadingUnderscore=@LeadingUnderscore@
162
163 # Pin a suffix on executables? If so, what (Windows only).
164 exeext=@exeext@
165
166 # Windows=YES if on a Windows platform
167 ifneq "$(findstring $(HostOS_CPP), mingw32 cygwin32)" ""
168 Windows=YES
169 else
170 Windows=NO
171 endif
172
173 # BootingFromHc - build GHC and the libraries from .hc files?
174 BootingFromHc = @BootingFromHc@
175
176 # BootingFromUnregisterisedHc - treat .hc files as containing unregisterised
177 # rather than registerised code, i.e., disable the mangler?
178 BootingFromUnregisterisedHc = @BootingFromUnregisterisedHc@
179
180 #
181 # Which ways should DocBook XML documents be built?
182 # options are: dvi ps pdf html chm HxS
183 #
184 XMLDocWays=
185
186 ################################################################################
187 #
188 # Variables that control how the compiler itself is built
189 #
190 ################################################################################
191
192 # The compiler used to build GHC is $(GHC).  To change the actual compiler
193 # used, re-configure with --with-ghc=<path-to-ghc>.
194
195 # Extra ways in which to build the compiler (for example, you might want to
196 # build a profiled compiler so you can see where it spends its time)
197 GhcCompilerWays=
198
199 # Extra option flags to pass to the compiler that compiles the compiler
200 # (Ones that are essential are wired into compiler/Makefile)
201 # Typical options to use here:
202 #
203 #       -DDEBUG         include debugging code and assertions (will make the
204 #                       compiler slower and produce debugging output, but useful
205 #                       for development)
206 #
207 #       -dcore-lint     check the types after every pass of the compiler;
208 #                       a pretty strong internal check of the compiler being
209 #                       used to compile GHC.  Useful when bootstrapping.
210 GhcHcOpts=-Rghc-timing
211
212 # Extra options added to specific stages of the compiler bootstrap.
213 # These are placed later on the command line, and may therefore
214 # override options from $(GhcHcOpts).
215 GhcStage1HcOpts=
216 GhcStage2HcOpts=
217 GhcStage3HcOpts=
218
219 # Build a compiler that will build *unregisterised* libraries and
220 # binaries by default.  Unregisterised code is supposed to compile and
221 # run without any support for architecture-specific assembly mangling,
222 # register assignment or tail-calls, and is therefore a good way to get
223 # started when porting GHC to new architectures.
224 #
225 # If this is set to NO, you can still use the unregisterised way
226 # (way 'u') to get unregisterised code, but the default way will be
227 # registerised.
228 #
229 # NOTE: the stage1 compiler will be a registerised binary (assuming
230 # the compiler you build with is generating registerised binaries), but
231 # the stage2 compiler will be an unregisterised binary.
232 #
233 ifneq "$(findstring $(HostArch_CPP), alpha hppa)" ""
234 GhcUnregisterised=YES
235 else
236 GhcUnregisterised=NO
237 endif
238
239 # Build a compiler with a native code generator backend
240 # (as well as a C backend)
241 #
242 # Target platforms supported:
243 #   i386, powerpc
244 #   sparc has bitrotted
245 #   AIX is not supported 
246 ArchSupportsNCG=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc)))
247 OsSupportsNCG=$(strip $(patsubst $(HostOS_CPP), YES, $(patsubst aix,,$(HostOS_CPP))))
248
249 ifeq "$(OsSupportsNCG)$(ArchSupportsNCG)$(GhcUnregisterised)" "YESYESNO"
250 GhcWithNativeCodeGen=YES
251 else
252 GhcWithNativeCodeGen=NO
253 endif
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 ifeq "$(ArchSupportsSMP)$(GhcUnregisterised)" "YESNO"
265 GhcWithSMP=YES
266 else
267 GhcWithSMP=NO
268 endif
269
270 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
271 # has support for this OS/ARCH combination.
272
273 OsSupportsGHCi=$(strip $(patsubst $(HostOS_CPP), YES, $(findstring $(HostOS_CPP), mingw32 cygwin32 linux solaris2 freebsd netbsd openbsd darwin)))
274 ArchSupportsGHCi=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc sparc64)))
275
276 ifeq "$(OsSupportsGHCi)$(ArchSupportsGHCi)" "YESYES"
277 GhcWithInterpreter=YES
278 else 
279 GhcWithInterpreter=NO
280 endif
281
282 # GhcEnableTablesNextToCode tells us whether the target architecture
283 # supports placing info tables directly before the entry code
284 # (see TABLES_NEXT_TO_CODE in the RTS).  Whether we actually compile for
285 # TABLES_NEXT_TO_CODE depends on whether we're building unregisterised
286 # code or not, which may be decided by options to the compiler later.
287 ifneq "$(findstring $(TargetArch_CPP)X, ia64X powerpc64X)" ""
288 GhcEnableTablesNextToCode=NO
289 else
290 GhcEnableTablesNextToCode=YES
291 endif
292
293 #
294 # Building various ways?
295 # (right now, empty if not).
296 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
297 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
298
299 # Interface file version (hi-boot files only)
300 #
301 # A GHC built with HscIfaceFileVersion=n will look for 
302 #       M.hi-boot-n, and only then for 
303 #       M.hi-boot.
304 # (It'll be happy with the latter if the former doesn't exist.)
305 #
306 #
307 # This variable is used ONLY for hi-boot files.  Its only purpose is
308 # to allow you to have a single directory with multiple .hi-boot files
309 # for the same module, each corresponding to a different version of
310 # GHC.
311 #
312 # HscIfaceFileVersion is propagated to hsc via
313 # compiler/main/Config.hs, which is automatically generated by
314 # compiler/Makefile.
315
316 HscIfaceFileVersion=6
317
318 # Building with debugger?
319 GhciWithDebugger=YES
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 ifeq "$(BootingFromHc)" "YES"
348 GhcRTSWays=
349 else
350 GhcRTSWays=thr thr_p debug thr_debug
351 endif
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 ifneq "$(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)" ""
395 SplitObjs=YES
396 else
397 SplitObjs=NO
398 endif
399
400 # Don't split object files for libs if we're building DLLs, or booting from
401 # .hc files.
402 ifeq "$(DLLized)" "YES"
403 SplitObjs=NO
404 endif
405 ifeq "$(BootingFromHc)" "YES"
406 SplitObjs=NO
407 endif
408 ifeq "$(GhcUnregisterised)" "YES"
409 SplitObjs=NO
410 endif
411 ifeq "$(TargetArch_CPP)" "ia64"
412 SplitObjs=NO
413 endif
414
415 # Math library
416 LIBM=@LIBM@
417
418 # Build the ObjectIO ?
419 #
420 GhcLibsWithObjectIO=@GhcLibsWithObjectIO@
421
422 # .NET interop support?
423 #
424 DotnetSupport=@DotnetSupport@
425
426 # Build unix package?
427 #
428 GhcLibsWithUnix=@GhcLibsWithUnix@
429
430 # ----------------------------------------------------------------------------
431 # Options for GHC's RTS
432
433 # For an optimised RTS (you probably don't want to change these; we build
434 # a debugging RTS by default now.  Use -debug to get it).
435 GhcRtsHcOpts=-optc-O2
436 GhcRtsCcOpts=-fomit-frame-pointer
437
438 # Include the front panel code?  Needs GTK+.
439 GhcRtsWithFrontPanel = NO
440
441 # Include support for CPU performance counters via the PAPI library in the RTS?
442 # (PAPI: http://icl.cs.utk.edu/papi/)
443 GhcRtsWithPapi = NO
444 HavePapi = @HavePapi@
445
446 ################################################################################
447 #
448 #               nofib
449 #
450 #       nofib specific options
451 #
452 ################################################################################
453
454 WithNofibHc = $(GHC_INPLACE)
455
456 # NoFibSubDirs controls which set of tests should be run
457 # You can run one or more of
458 #       imaginary 
459 #       spectral
460 #       real
461 #       parallel
462 #       PRIVATE
463 #       PENDING
464 #       UNUSED
465 NoFibSubDirs = imaginary spectral real
466
467 # The different ways to build nofib. Default is just to mirror
468 # what is done for the ghc prelude libraries.
469 #
470 NoFibWays = $(GhcLibWays)
471
472 # Haskell compiler options for nofib
473 NoFibHcOpts = -O
474
475 # Number of times to run each program
476 NoFibRuns = 5
477
478 ################################################################################
479 #
480 #               Paths (see paths.mk)
481 #
482 ################################################################################
483
484 # Directory used by GHC (and possibly other tools) for storing
485 # temporary files.  If your TMPDIR isn't big enough, either override
486 # this in build.mk or set your environment variable "TMPDIR" to point
487 # to somewhere with more space.  (TMPDIR=. is a good choice).
488
489 # DEFAULT_TMPDIR isn't called TMPDIR because GNU make tends to
490 # override an environment variable with the value of the make variable
491 # of the same name (if it exists) when executing sub-processes, so
492 # setting the TMPDIR env var would have no effect in the build tree.
493
494 DEFAULT_TMPDIR          = /tmp
495 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
496 DEFAULT_TMPDIR          = /C/TEMP
497 endif
498 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
499 DEFAULT_TMPDIR          = /C/TEMP
500 endif
501
502 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
503 FPTOOLS_TOP_ABS         = @hardtop@
504 # The platform specific version of 'hardtop'.
505 FPTOOLS_TOP_ABS_PLATFORM = @hardtop_plat@
506
507 #
508 # Installation directories, we don't use half of these,
509 # but since the configure script has them on offer while
510 # passing through, we might as well set them.
511
512 prefix                  = @prefix@
513 datarootdir             = @datarootdir@
514 exec_prefix             = @exec_prefix@
515 bindir                  = @bindir@
516 datadir0                = @datadir@
517 libdir0                 = @libdir@
518 includedir              = @includedir@
519 oldincludedir           = @oldincludedir@
520 mandir                  = @mandir@
521
522 ifeq "$(Windows)" "YES"
523
524 ifeq "$(strip $(prefix))" ""
525 prefix          = /c/ghc
526 endif
527
528 # Hack: our directory layouts tend to be different on Windows, so
529 # hack around configure's bogus assumptions here.
530 datadir         = $(prefix)
531 libdir          = $(prefix)
532
533 else
534
535 #
536 # Unix: override libdir and datadir to put ghc-specific stuff in
537 # a subdirectory with the version number included.
538 #
539 libdir     = $(libdir0)/ghc-$(ProjectVersion)
540 datadir    = $(datadir0)/ghc-$(ProjectVersion)
541
542 endif # Windows
543
544 # Default place for putting interface files is $(libdir)
545 # (overriden for packages in package.mk)
546 ifacedir                = $(libdir)
547
548
549 # Default values for most of the above are only set if
550 # they weren't configured to anything in particular
551 # via the configure script. (i.e., we make no assumption
552 # that the autoconf-generated script will assign defaults
553 # to all of the above).
554 #
555 ifeq "$(strip $(exec_prefix))" ""
556 exec_prefix             = $(prefix)
557 endif
558 ifeq "$(strip $(bindir))" ""
559 bindir                  = $(exec_prefix)/bin
560 endif
561
562 #
563 # NOTE: by intention, libexecdir and libdir point to 
564 # the same place.
565 #  => Only way to override this is to set libexecdir= on the command line.
566 #     (NOTE: configure script setting is ignored).
567 libexecdir              = $(libdir)
568
569 ifeq "$(strip $(datadir))" ""
570 datadir         = $(prefix)/share
571 endif
572 ifeq "$(strip $(libdir))" ""
573 libdir          = $(exec_prefix)/lib
574 endif
575 ifeq "$(strip $(includedir))" ""
576 includedir      = $(prefix)/include
577 endif
578 ifeq "$(strip $(oldincludedir))" ""
579 oldincludedir   = /usr/include
580 endif
581 ifeq "$(strip $(mandir))" ""
582 mandir          = $(prefix)/man
583 endif
584
585 #-----------------------------------------------------------------------------
586 # install configuration
587
588 #
589 # Set this to have files installed with a specific owner
590 #
591 INSTALL_OWNER =
592
593
594 # Set this to have files installed with a specific group
595 #
596 INSTALL_GROUP =
597
598 #
599 # Invocations of `install' for the four different classes
600 # of targets:
601 #
602 INSTALL_PROGRAM = $(INSTALL) -m 755
603 INSTALL_SCRIPT  = $(INSTALL) -m 755
604 INSTALL_SHLIB   = $(INSTALL) -m 755
605 INSTALL_DATA    = $(INSTALL) -m 644
606 INSTALL_MAN     = $(INSTALL) -m 644
607 INSTALL_DIR     = $(MKDIRHIER)
608
609 # -----------------------------------------------------------------------------
610 # Utilities programs: flags 
611
612 # If you want to give any standard flags to pretty much any utility
613 # (see utils.mk for a complete list), by adding a line here
614 #
615 #       SRC_P_OPTS += ...
616 #
617 # where P is the utility. For example, to add -O to all Haskell
618 # compilations, 
619 #
620 #       SRC_HC_OPTS += -O
621
622 SRC_HC_OPTS += -H16m -O
623
624 # These flags make flex 8-bit
625 SRC_FLEX_OPTS   += -8
626
627 SRC_INSTALL_BIN_OPTS    += -s
628
629 # lint gets all CPP's flags too
630 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
631 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
632
633 # Default fptools options for dllwrap.
634 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
635
636 # Flags for CPP when running GreenCard on .pgc files
637 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
638
639
640 ################################################################################
641 #
642 #       Layout of the source tree
643 #
644 ################################################################################
645
646 # Here we provide defines for the various directories in the source tree,
647 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
648 # indicates a directory relative to the top of the source tree, whereas
649 # $(GHC_FOO_DIR) is a directory relative to the current directory.
650 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
651
652 GHC_UTILS_DIR_REL       = utils
653 GHC_INCLUDE_DIR_REL     = includes
654 GHC_COMPILER_DIR_REL    = compiler
655 GHC_RTS_DIR_REL         = rts
656 GHC_UTILS_DIR_REL       = utils
657 GHC_DRIVER_DIR_REL      = driver
658 GHC_COMPAT_DIR_REL      = compat
659
660 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
661 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
662 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
663 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
664 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
665 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
666 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
667 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
668 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
669 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
670 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
671 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
672 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
673 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
674
675 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
676 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
677 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
678
679 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
680 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
681 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
682 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
683 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
684 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
685 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
686
687 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
688 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
689 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
690 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
691 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
692 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
693 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
694 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
695 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
696 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSC2HS_DIR_REL)
697 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
698 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
699 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
700 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
701
702 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
703 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
704 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
705
706 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
707 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
708 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
709 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
710 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
711 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
712 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
713
714 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
715 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
716 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
717 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
718 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
719 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
720 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
721 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
722 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
723 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
724 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
725 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
726 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
727 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
728
729 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
730 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
731 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
732
733 # -----------------------------------------------------------------------------
734 # Names of programs in the GHC tree
735 #
736 #      xxx_PGM          the name of an executable, without the path
737 #      xxx              the executable relative to the current dir
738
739 GHC_UNLIT_PGM           = unlit$(exeext)
740 GHC_HP2PS_PGM           = hp2ps
741 GHC_HSTAGS_PGM          = hasktags
742 GHC_HSC2HS_INPLACE_PGM  = hsc2hs-inplace
743 GHC_TOUCHY_PGM          = touchy$(exeext)
744 GHC_MANGLER_PGM         = ghc-asm
745 GHC_SPLIT_PGM           = ghc-split
746 GHC_SYSMAN_PGM          = SysMan
747 GHC_PKG_INPLACE_PGM     = ghc-pkg-inplace
748 GHC_GENPRIMOP_PGM       = genprimopcode
749 GHC_GENAPPLY_PGM        = genapply
750 GHC_MKDEPENDC_PGM       = mkdependC
751 GHC_LTX_PGM             = ltx
752 GHC_MKDIRHIER_PGM       = mkdirhier
753 GHC_LNDIR_PGM           = lndir
754 GHC_RUNTEST_PGM         = runstdtest
755
756 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
757 GHC_CP                  = "xcopy /y"
758 GHC_PERL                = perl
759 else
760 GHC_CP                  = $(CP)
761 GHC_PERL                = $(PERL)
762 endif
763
764 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
765 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
766 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
767 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/$(GHC_HSC2HS_INPLACE_PGM)
768 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
769 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
770 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
771 GHC_PKG_INPLACE         = $(GHC_PKG_DIR)/$(GHC_PKG_INPLACE_PGM)
772 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
773 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
774 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
775 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
776 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
777 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
778 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
779
780 #-----------------------------------------------------------------------------
781 # Haskell compilers and mkdependHS
782
783 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
784 # compilers, if available.
785 #
786 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
787 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
788 #
789 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
790 # (because the version numbers have to be calculated).
791
792 GHC             = @WithGhc@
793 GhcDir          = $(dir $(GHC))
794
795 # Set to YES if $(GHC) has the readline package installed
796 GhcHasReadline  = @GhcHasReadline@
797
798 HBC             = @HBC@
799 NHC             = @NHC@
800
801 # Sometimes we want to invoke ghc from the build tree in different
802 # places (eg. it's handy to have a nofib & a ghc build in the same
803 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
804
805 GHC_INPLACE     = $(GHC_COMPILER_DIR)/ghc-inplace
806 GHC_STAGE1      = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
807 GHC_STAGE2      = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
808 GHC_STAGE3      = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
809
810 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
811
812 # We are using the stage1 compiler to compile Haskell code, set up
813 # some variables appropriately:
814 HC              =$(GHC_STAGE1)
815 MKDEPENDHS      =$(GHC_STAGE1)
816 GhcVersion      = @ProjectVersion@
817 GhcPatchLevel   = @ProjectPatchLevel@
818 # oops, these are wrong:
819 GhcMajVersion   = @GhcMajVersion@
820 GhcMinVersion   = @GhcMinVersion@
821
822 ghc_ge_504 = YES
823 ghc_ge_601 = YES
824 ghc_ge_602 = YES
825 ghc_ge_603 = YES
826 ghc_ge_605 = YES
827
828 else # not UseStage1 or BootingFromHc
829
830 HC              = @WithHc@
831 MKDEPENDHS      = $(GHC)
832 GhcVersion      = @GhcVersion@
833 GhcPatchLevel   = @GhcPatchLevel@
834 GhcMajVersion   = @GhcMajVersion@
835 GhcMinVersion   = @GhcMinVersion@
836
837 # Some useful GHC version predicates:
838 ghc_ge_504 = @ghc_ge_504@
839 ghc_ge_601 = @ghc_ge_601@
840 ghc_ge_602 = @ghc_ge_602@
841 ghc_ge_603 = @ghc_ge_603@
842 ghc_ge_605 = @ghc_ge_605@
843 endif
844
845 # Canonicalised ghc version number, used for easy (integer) version
846 # comparisons.  We must expand $(GhcMinVersion) to two digits by
847 # adding a leading zero if necessary:
848 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
849 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
850 else
851 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
852 endif
853
854 #-----------------------------------------------------------------------------
855 # C compiler
856 #
857 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
858 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
859 # needs to know which gcc you're using in order to perform its tests.
860
861 HaveGcc         = @HaveGcc@
862 UseGcc          = YES
863 WhatGccIsCalled = @WhatGccIsCalled@
864 GccVersion      = @GccVersion@
865 ifeq "$(strip $(HaveGcc))" "YES"
866 ifneq "$(strip $(UseGcc))"  "YES"
867   CC    = cc
868 else
869   CC    = $(WhatGccIsCalled)
870   GccDir = $(dir $(WhatGccIsCalled))
871 endif
872 endif
873
874 # default C compiler flags
875 SRC_CC_OPTS = @SRC_CC_OPTS@
876
877 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
878 SRC_CC_OPTS += -G0
879 endif
880
881 #-----------------------------------------------------------------------------
882 # GMP Library (version 2.0.x or above)
883 #
884 HaveLibGmp      = @HaveLibGmp@
885 LibGmp          = @LibGmp@
886
887 GMP_INCLUDE_DIRS=@GMP_INCLUDE_DIRS@
888 GMP_LIB_DIRS=@GMP_LIB_DIRS@
889
890 #-----------------------------------------------------------------------------
891 # GMP framework (Mac OS X)
892 #
893 HaveFrameworkGMP = @HaveFrameworkGMP@
894
895 #-----------------------------------------------------------------------------
896 # Mingwex Library
897 #
898 HaveLibMingwEx  = @HaveLibMingwEx@
899
900 #-----------------------------------------------------------------------------
901 # Flex (currently unused, could be moved to glafp-utils)
902
903 # FLEX                  = @LEX@
904 # Don't bother with -lfl, we define our own yywrap()s anyway.
905 # FLEX_LIB              = 
906 #WAS:FLEX_LIB           = @LEXLIB@
907
908 #-----------------------------------------------------------------------------
909 # Other standard (ha!) Unix utilities
910
911 AR                      = @ArCmd@
912 ArSupportsInput         = @ArSupportsInput@
913 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
914 BASH                    = /usr/local/bin/bash
915
916 CONTEXT_DIFF            = @ContextDiffCmd@
917 CP                      = cp
918 CPP                     = @CPP@ @CPPFLAGS@
919 CTAGS                   = $(ETAGS)
920 #
921 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
922 # behave plausibly on Haskell sources.
923 #
924 RAWCPP_FLAGS            = -undef -traditional
925 FIND                    = @FindCmd@
926 SORT                    = @SortCmd@
927 INSTALL                 = @INSTALL@
928 #
929 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
930 # install-sh script (if chosen). This not terribly useful to us, so we convert
931 # it into an abs. path.
932
933 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
934 LATEX                   = latex
935 HEVEA                   = hevea
936 HACHA                   = hacha
937 LN_S                    = @LN_S@
938 MANMACROS               = -man
939 MSMACROS                = -ms
940 MV                      = mv
941 NROFF                   = nroff
942 PERL                    = @PerlCmd@
943 PYTHON                  = @PythonCmd@
944 PIC                     = pic
945 PREPROCESSCMD           = $(CC) -E
946 RANLIB                  = @RANLIB@
947 RM                      = rm -f
948 SED                     = @SedCmd@
949 SHELL                   = /bin/sh
950
951 LD                      = @LdCmd@
952
953 # Some ld's support the -x flag and some don't, so the configure
954 # script detects which we have and sets LdXFlag to "-x" or ""
955 # respectively.
956 LD_X                    = @LdXFlag@
957
958 # GNU ld supports input via a linker script, which is useful to avoid
959 # overflowing command-line length limits.
960 LdIsGNULd               = @LdIsGNULd@
961
962 #
963 # In emergency situations, REAL_SHELL is used to perform shell commands
964 # from within the ghc driver script, by scribbling the command line to
965 # a temp file and then having $(REAL_SHELL) execute it. 
966 #
967 # The reason for having to do this is that overly long command lines
968 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
969 # 2.5.1), which is why this backdoor is provided. The situation of overly
970 # long command lines is either encountered while doing `make boot' in compiler/, 
971 # or when linking the compiler binary (`hsc'). 
972 #
973 # We do not use SHELL to execute long commands, as `make' will more than likely
974 # override whatever setting you have in your environment while executing. 
975
976 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
977 # as it is SHELL that will show up the bogosity in the first place, but setting
978 # it to anything else isn't really portable.
979 #
980 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
981 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
982 # command shell.
983 #
984 REAL_SHELL=$(SHELL)
985 SIZE                    = size
986 STRIP                   = strip
987 TAR                     = @TarCmd@
988 ZIP                     = zip
989
990 #
991 # This is special to literate/, ToDo: add literate-specific
992 # configure setup to literate/.
993 #
994 TBL                     = tbl
995 TEX                     = tex
996 TGRIND                  = tgrind
997 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
998 TIB                     = tib
999
1000 TIME                    = @TimeCmd@
1001 TROFF                   = troff
1002 UNAME                   = uname
1003
1004 # GTK+
1005 GTK_CONFIG = @GTK_CONFIG@
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 'thr_debug':
1158 WAY_thr_debug_NAME=threaded
1159 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1160
1161 # Way 'thr_debug_p':
1162 WAY_thr_debug_p_NAME=threaded
1163 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1164
1165 #
1166 # Add user-way configurations here:
1167 #
1168 WAY_A_NAME=
1169 WAY_A_HC_OPTS=
1170
1171 WAY_B_NAME=
1172 WAY_B_HC_OPTS=
1173
1174 WAY_a_NAME=
1175 WAY_a_HC_OPTS=
1176
1177 WAY_b_NAME=
1178 WAY_b_HC_OPTS=
1179
1180 WAY_c_NAME=
1181 WAY_c_HC_OPTS=
1182
1183 WAY_d_NAME=
1184 WAY_d_HC_OPTS=
1185
1186 WAY_e_NAME=
1187 WAY_e_HC_OPTS=
1188
1189 WAY_f_NAME=
1190 WAY_f_HC_OPTS=
1191
1192 WAY_g_NAME=
1193 WAY_g_HC_OPTS=
1194
1195 WAY_h_NAME=
1196 WAY_h_HC_OPTS=
1197
1198 WAY_j_NAME=
1199 WAY_j_HC_OPTS=
1200
1201 WAY_k_NAME=
1202 WAY_k_HC_OPTS=
1203
1204 WAY_l_NAME=
1205 WAY_l_HC_OPTS=
1206
1207 WAY_m_NAME=
1208 WAY_m_HC_OPTS=
1209
1210 WAY_n_NAME=
1211 WAY_n_HC_OPTS=
1212
1213 WAY_o_NAME=
1214 WAY_o_HC_OPTS=
1215
1216 ################################################################################
1217 #
1218 #               31-bit-Int Core files
1219 #
1220 ################################################################################
1221
1222
1223 # It is possible to configure the compiler and prelude to support 31-bit
1224 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1225 # architecture.  Currently the only useful output from this option is external Core
1226 # files.  The following additions to your build.mk will produce the
1227 # 31-bit core output.  Note that this is *not* just a library "way"; the
1228 # compiler must be built a special way too.
1229
1230 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1231 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1232 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1233 # SplitObjs=NO
1234