Add PowerPC to the list of SMP arches
[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 #------------------------------------------------------------------------------
319 # Options for Libraries
320
321 # What extra ways to build the libraries in
322 # In addition to the normal sequential way, the default is to also build
323 # profiled prelude libraries.
324 # When booting from .hc files, turn this off.
325 ifeq "$(BootingFromHc)" "YES"
326 GhcLibWays=
327 else
328 GhcLibWays=p
329 endif
330
331 # In addition, the RTS is built in some further variations.  Ways that
332 # make sense here:
333
334 #   thr         : threaded
335 #   thr_p       : threaded profiled
336 #   debug       : debugging (compile with -g for the C compiler, and -DDEBUG)
337 #   debug_p     : debugging profiled
338 #   debug_u     : debugging unregisterised
339 #   thr_debug   : debugging threaded
340 #   thr_debug_p : debugging threaded profiled
341 #
342 ifeq "$(BootingFromHc)" "YES"
343 GhcRTSWays=
344 else
345 GhcRTSWays=thr thr_p debug thr_debug
346 endif
347
348 # Option flags to pass to GHC when it's compiling modules in
349 # fptools/libraries.  Typically these are things like -O or
350 # -dcore-lint or -H32m.  The ones that are *essential* are wired into
351 # the build system.
352 #
353 #       -O is pretty desirable, otherwise no inlining of prelude
354 #               things (incl "+") happens when compiling with this compiler
355 #
356 #       -fgenerics switches on generation of support code for 
357 #               derivable type classes.  This is now off by default,
358 #               but we switch it on for the libraries so that we generate
359 #               the code in case someone importing wants it
360
361 GhcLibHcOpts=-O -Rghc-timing -fgenerics
362
363 # Win32 only: Enable the RTS and libraries to be built as DLLs
364 DLLized=@EnableWin32DLLs@
365
366 # Strip local symbols from libraries?  This can make the libraries smaller,
367 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
368 #
369 StripLibraries=NO
370
371 # These are the URL patterns that Haddock uses to generate the "Source
372 # File" links on each page.
373 CorePackageSourceURL = http://darcs.haskell.org/ghc-6.6/packages/$(PACKAGE)/%{FILE}
374 ExtraPackageSourceURL = http://darcs.haskell.org/packages/$(PACKAGE)/%{FILE}
375
376 # These are the packages required to be present in order to bootstrap GHC
377 # NB. must be synced with libraries/core-packages
378 CorePackages = base Cabal haskell98 readline regex-base regex-compat \
379                regex-posix parsec stm template-haskell unix Win32
380
381 # ----------------------------------------------------------------------------
382 # Object-file splitting
383 #
384 #       Set SplitObjs=YES or NO in your build.mk
385 #
386 #       Don't use -split-objs in in GhcLibHcOpts, because the build
387 #               system needs to do other special magic if you are
388 #               doing object-file splitting
389 ifneq "$(findstring $(HostArch_CPP), i386 x86_64 powerpc sparc)" ""
390 SplitObjs=YES
391 else
392 SplitObjs=NO
393 endif
394
395 # Don't split object files for libs if we're building DLLs, or booting from
396 # .hc files.
397 ifeq "$(DLLized)" "YES"
398 SplitObjs=NO
399 endif
400 ifeq "$(BootingFromHc)" "YES"
401 SplitObjs=NO
402 endif
403 ifeq "$(GhcUnregisterised)" "YES"
404 SplitObjs=NO
405 endif
406 ifeq "$(TargetArch_CPP)" "ia64"
407 SplitObjs=NO
408 endif
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 #
503 # Installation directories, we don't use half of these,
504 # but since the configure script has them on offer while
505 # passing through, we might as well set them.
506
507 prefix                  = @prefix@
508 exec_prefix             = @exec_prefix@
509 bindir                  = @bindir@
510 datadir0                = @datadir@
511 libdir0                 = @libdir@
512 includedir              = @includedir@
513 oldincludedir           = @oldincludedir@
514 mandir                  = @mandir@
515
516 ifeq "$(Windows)" "YES"
517
518 ifeq "$(strip $(prefix))" ""
519 prefix          = /c/ghc
520 endif
521
522 # Hack: our directory layouts tend to be different on Windows, so
523 # hack around configure's bogus assumptions here.
524 datadir         = $(prefix)
525 libdir          = $(prefix)
526
527 else
528
529 #
530 # Unix: override libdir and datadir to put ghc-specific stuff in
531 # a subdirectory with the version number included.
532 #
533 libdir     = $(libdir0)/ghc-$(ProjectVersion)
534 datadir    = $(datadir0)/ghc-$(ProjectVersion)
535
536 endif # Windows
537
538 # Default place for putting interface files is $(libdir)
539 # (overriden for packages in package.mk)
540 ifacedir                = $(libdir)
541
542
543 # Default values for most of the above are only set if
544 # they weren't configured to anything in particular
545 # via the configure script. (i.e., we make no assumption
546 # that the autoconf-generated script will assign defaults
547 # to all of the above).
548 #
549 ifeq "$(strip $(exec_prefix))" ""
550 exec_prefix             = $(prefix)
551 endif
552 ifeq "$(strip $(bindir))" ""
553 bindir                  = $(exec_prefix)/bin
554 endif
555
556 #
557 # NOTE: by intention, libexecdir and libdir point to 
558 # the same place.
559 #  => Only way to override this is to set libexecdir= on the command line.
560 #     (NOTE: configure script setting is ignored).
561 libexecdir              = $(libdir)
562
563 ifeq "$(strip $(datadir))" ""
564 datadir         = $(prefix)/share
565 endif
566 ifeq "$(strip $(libdir))" ""
567 libdir          = $(exec_prefix)/lib
568 endif
569 ifeq "$(strip $(includedir))" ""
570 includedir      = $(prefix)/include
571 endif
572 ifeq "$(strip $(oldincludedir))" ""
573 oldincludedir   = /usr/include
574 endif
575 ifeq "$(strip $(mandir))" ""
576 mandir          = $(prefix)/man
577 endif
578
579 #-----------------------------------------------------------------------------
580 # install configuration
581
582 #
583 # Set this to have files installed with a specific owner
584 #
585 INSTALL_OWNER =
586
587
588 # Set this to have files installed with a specific group
589 #
590 INSTALL_GROUP =
591
592 #
593 # Invocations of `install' for the four different classes
594 # of targets:
595 #
596 INSTALL_PROGRAM = $(INSTALL) -m 755
597 INSTALL_SCRIPT  = $(INSTALL) -m 755
598 INSTALL_SHLIB   = $(INSTALL) -m 755
599 INSTALL_DATA    = $(INSTALL) -m 644
600 INSTALL_MAN     = $(INSTALL) -m 644
601 INSTALL_DIR     = $(MKDIRHIER)
602
603 # -----------------------------------------------------------------------------
604 # Utilities programs: flags 
605
606 # If you want to give any standard flags to pretty much any utility
607 # (see utils.mk for a complete list), by adding a line here
608 #
609 #       SRC_P_OPTS += ...
610 #
611 # where P is the utility. For example, to add -O to all Haskell
612 # compilations, 
613 #
614 #       SRC_HC_OPTS += -O
615
616 SRC_HC_OPTS += -H16m -O
617
618 # These flags make flex 8-bit
619 SRC_FLEX_OPTS   += -8
620
621 SRC_INSTALL_BIN_OPTS    += -s
622
623 # lint gets all CPP's flags too
624 SRC_LINT_OPTS           += -axz -DLINT $(SRC_CPP_OPTS)
625 WAY$(_way)_LINT_OPTS    += WAY$(_way)_CPP_OPTS
626
627 # Default fptools options for dllwrap.
628 SRC_BLD_DLL_OPTS += -mno-cygwin --target=i386-mingw32
629
630 # Flags for CPP when running GreenCard on .pgc files
631 GC_CPP_OPTS += -P -E -x c -traditional -D__GLASGOW_HASKELL__
632
633
634 ################################################################################
635 #
636 #       Layout of the source tree
637 #
638 ################################################################################
639
640 # Here we provide defines for the various directories in the source tree,
641 # so we can move things around more easily.  A define $(GHC_FOO_DIR_REL)
642 # indicates a directory relative to the top of the source tree, whereas
643 # $(GHC_FOO_DIR) is a directory relative to the current directory.
644 # $(GHC_FOO_DIR_ABS) is the absolute path to the directory.
645
646 GHC_UTILS_DIR_REL       = utils
647 GHC_INCLUDE_DIR_REL     = includes
648 GHC_COMPILER_DIR_REL    = compiler
649 GHC_RTS_DIR_REL         = rts
650 GHC_UTILS_DIR_REL       = utils
651 GHC_DRIVER_DIR_REL      = driver
652 GHC_COMPAT_DIR_REL      = compat
653
654 GHC_MKDEPENDC_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdependC
655 GHC_LTX_DIR_REL         = $(GHC_UTILS_DIR_REL)/ltx
656 GHC_RUNTEST_DIR_REL     = $(GHC_UTILS_DIR_REL)/runstdtest
657 GHC_LNDIR_DIR_REL       = $(GHC_UTILS_DIR_REL)/lndir
658 GHC_MKDIRHIER_DIR_REL   = $(GHC_UTILS_DIR_REL)/mkdirhier
659 GHC_DOCBOOK_DIR_REL     = $(GHC_UTILS_DIR_REL)/docbook
660 GHC_UNLIT_DIR_REL       = $(GHC_UTILS_DIR_REL)/unlit
661 GHC_HP2PS_DIR_REL       = $(GHC_UTILS_DIR_REL)/hp2ps
662 GHC_HSTAGS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hasktags
663 GHC_HSC2HS_DIR_REL      = $(GHC_UTILS_DIR_REL)/hsc2hs
664 GHC_TOUCHY_DIR_REL      = $(GHC_UTILS_DIR_REL)/touchy
665 GHC_PKG_DIR_REL         = $(GHC_UTILS_DIR_REL)/ghc-pkg
666 GHC_GENPRIMOP_DIR_REL   = $(GHC_UTILS_DIR_REL)/genprimopcode
667 GHC_GENAPPLY_DIR_REL    = $(GHC_UTILS_DIR_REL)/genapply
668
669 GHC_MANGLER_DIR_REL     = $(GHC_DRIVER_DIR_REL)/mangler
670 GHC_SPLIT_DIR_REL       = $(GHC_DRIVER_DIR_REL)/split
671 GHC_SYSMAN_DIR_REL      = $(GHC_RTS_DIR_REL)/parallel
672
673 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
674 GHC_INCLUDE_DIR         = $(FPTOOLS_TOP)/$(GHC_INCLUDE_DIR_REL)
675 GHC_COMPILER_DIR        = $(FPTOOLS_TOP)/$(GHC_COMPILER_DIR_REL)
676 GHC_RTS_DIR             = $(FPTOOLS_TOP)/$(GHC_RTS_DIR_REL)
677 GHC_UTILS_DIR           = $(FPTOOLS_TOP)/$(GHC_UTILS_DIR_REL)
678 GHC_DRIVER_DIR          = $(FPTOOLS_TOP)/$(GHC_DRIVER_DIR_REL)
679 GHC_COMPAT_DIR          = $(FPTOOLS_TOP)/$(GHC_COMPAT_DIR_REL)
680
681 GHC_MKDEPENDC_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDEPENDC_DIR_REL)
682 GHC_LTX_DIR             = $(FPTOOLS_TOP)/$(GHC_LTX_DIR_REL)
683 GHC_RUNTEST_DIR         = $(FPTOOLS_TOP)/$(GHC_RUNTEST_DIR_REL)
684 GHC_LNDIR_DIR           = $(FPTOOLS_TOP)/$(GHC_LNDIR_DIR_REL)
685 GHC_MKDIRHIER_DIR       = $(FPTOOLS_TOP)/$(GHC_MKDIRHIER_DIR_REL)
686 GHC_DOCBOOK_DIR         = $(FPTOOLS_TOP)/$(GHC_DOCBOOK_DIR_REL)
687 GHC_UNLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_UNLIT_DIR_REL)
688 GHC_HP2PS_DIR           = $(FPTOOLS_TOP)/$(GHC_HP2PS_DIR_REL)
689 GHC_HSTAGS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSTAGS_DIR_REL)
690 GHC_HSC2HS_DIR          = $(FPTOOLS_TOP)/$(GHC_HSC2HS_DIR_REL)
691 GHC_TOUCHY_DIR          = $(FPTOOLS_TOP)/$(GHC_TOUCHY_DIR_REL)
692 GHC_PKG_DIR             = $(FPTOOLS_TOP)/$(GHC_PKG_DIR_REL)
693 GHC_GENPRIMOP_DIR       = $(FPTOOLS_TOP)/$(GHC_GENPRIMOP_DIR_REL)
694 GHC_GENAPPLY_DIR        = $(FPTOOLS_TOP)/$(GHC_GENAPPLY_DIR_REL)
695
696 GHC_MANGLER_DIR         = $(FPTOOLS_TOP)/$(GHC_MANGLER_DIR_REL)
697 GHC_SPLIT_DIR           = $(FPTOOLS_TOP)/$(GHC_SPLIT_DIR_REL)
698 GHC_SYSMAN_DIR          = $(FPTOOLS_TOP)/$(GHC_SYSMAN_DIR_REL)
699
700 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
701 GHC_INCLUDE_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_INCLUDE_DIR_REL)
702 GHC_COMPILER_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_COMPILER_DIR_REL)
703 GHC_RTS_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_RTS_DIR_REL)
704 GHC_UTILS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_UTILS_DIR_REL)
705 GHC_DRIVER_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_DRIVER_DIR_REL)
706 GHC_COMPAT_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_COMPAT_DIR_REL)
707
708 GHC_MKDEPENDC_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDEPENDC_DIR_REL)
709 GHC_LTX_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_LTX_DIR_REL)
710 GHC_RUNTEST_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_RUNTEST_DIR_REL)
711 GHC_LNDIR_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_LNDIR_DIR_REL)
712 GHC_MKDIRHIER_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_MKDIRHIER_DIR_REL)
713 GHC_DOCBOOK_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_DOCBOOK_DIR_REL)
714 GHC_UNLIT_DIR           = $(FPTOOLS_TOP_ABS)/$(GHC_UNLIT_DIR_REL)
715 GHC_HP2PS_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_HP2PS_DIR_REL)
716 GHC_HSTAGS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSTAGS_DIR_REL)
717 GHC_HSC2HS_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_HSC2HS_DIR_REL)
718 GHC_TOUCHY_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_TOUCHY_DIR_REL)
719 GHC_PKG_DIR_ABS         = $(FPTOOLS_TOP_ABS)/$(GHC_PKG_DIR_REL)
720 GHC_GENPRIMOP_DIR_ABS   = $(FPTOOLS_TOP_ABS)/$(GHC_GENPRIMOP_DIR_REL)
721 GHC_GENAPPLY_DIR_ABS    = $(FPTOOLS_TOP_ABS)/$(GHC_GENAPPLY_DIR_REL)
722
723 GHC_MANGLER_DIR_ABS     = $(FPTOOLS_TOP_ABS)/$(GHC_MANGLER_DIR_REL)
724 GHC_SYSMAN_DIR_ABS      = $(FPTOOLS_TOP_ABS)/$(GHC_SYSMAN_DIR_REL)
725 GHC_SPLIT_DIR_ABS       = $(FPTOOLS_TOP_ABS)/$(GHC_SPLIT_DIR_REL)
726
727 # -----------------------------------------------------------------------------
728 # Names of programs in the GHC tree
729 #
730 #      xxx_PGM          the name of an executable, without the path
731 #      xxx              the executable relative to the current dir
732
733 GHC_UNLIT_PGM           = unlit$(exeext)
734 GHC_HP2PS_PGM           = hp2ps
735 GHC_HSTAGS_PGM          = hasktags
736 GHC_HSC2HS_INPLACE_PGM  = hsc2hs-inplace
737 GHC_TOUCHY_PGM          = touchy$(exeext)
738 GHC_MANGLER_PGM         = ghc-asm
739 GHC_SPLIT_PGM           = ghc-split
740 GHC_SYSMAN_PGM          = SysMan
741 GHC_PKG_INPLACE_PGM     = ghc-pkg-inplace
742 GHC_GENPRIMOP_PGM       = genprimopcode
743 GHC_GENAPPLY_PGM        = genapply
744 GHC_MKDEPENDC_PGM       = mkdependC
745 GHC_LTX_PGM             = ltx
746 GHC_MKDIRHIER_PGM       = mkdirhier
747 GHC_LNDIR_PGM           = lndir
748 GHC_RUNTEST_PGM         = runstdtest
749
750 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
751 GHC_CP                  = "xcopy /y"
752 GHC_PERL                = perl
753 else
754 GHC_CP                  = $(CP)
755 GHC_PERL                = $(PERL)
756 endif
757
758 UNLIT                   = $(GHC_UNLIT_DIR)/$(GHC_UNLIT_PGM)
759 HP2PS                   = $(GHC_HP2PS_DIR)/$(GHC_HP2PS_PGM)
760 HSTAGS                  = $(GHC_HSTAGS_DIR)/$(GHC_HSTAGS_PGM)
761 HSC2HS_INPLACE          = $(GHC_HSC2HS_DIR)/$(GHC_HSC2HS_INPLACE_PGM)
762 MANGLER                 = $(GHC_MANGLER_DIR)/$(GHC_MANGLER_PGM)
763 SPLIT                   = $(GHC_SPLIT_DIR)/$(GHC_SPLIT_PGM)
764 SYSMAN                  = $(GHC_SYSMAN_DIR)/$(GHC_SYSMAN_PGM)
765 GHC_PKG_INPLACE         = $(GHC_PKG_DIR)/$(GHC_PKG_INPLACE_PGM)
766 GENPRIMOP               = $(GHC_GENPRIMOP_DIR)/$(GHC_GENPRIMOP_PGM)
767 GENAPPLY                = $(GHC_GENAPPLY_DIR)/$(GHC_GENAPPLY_PGM)
768 MKDEPENDC               = $(GHC_MKDEPENDC_DIR)/$(GHC_MKDEPENDC_PGM)
769 LTX                     = $(GHC_LTX_DIR)/$(GHC_LTX_PGM)
770 MKDIRHIER               = $(GHC_MKDIRHIER_DIR)/$(GHC_MKDIRHIER_PGM)
771 LNDIR                   = $(GHC_LNDIR_DIR)/$(GHC_LNDIR_PGM)
772 RUNTEST                 = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
773
774 #-----------------------------------------------------------------------------
775 # Haskell compilers and mkdependHS
776
777 # $(GHC), $(HBC) and $(NHC) point to installed versions of the relevant
778 # compilers, if available.
779 #
780 # $(HC) is a generic Haskell 98 compiler, set to $(GHC) by default.
781 # $(MKDEPENDHS) is the Haskell dependency generator (ghc -M).
782 #
783 # NOTE: Don't override $(GHC) in build.mk, use configure --with-ghc instead
784 # (because the version numbers have to be calculated).
785
786 GHC             = @WithGhc@
787 GhcDir          = $(dir $(GHC))
788
789 # Set to YES if $(GHC) has the readline package installed
790 GhcHasReadline  = @GhcHasReadline@
791
792 HBC             = @HBC@
793 NHC             = @NHC@
794
795 # Sometimes we want to invoke ghc from the build tree in different
796 # places (eg. it's handy to have a nofib & a ghc build in the same
797 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
798
799 GHC_INPLACE     = $(GHC_COMPILER_DIR)/ghc-inplace
800 GHC_STAGE1      = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
801 GHC_STAGE2      = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
802 GHC_STAGE3      = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
803
804 ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
805
806 # We are using the stage1 compiler to compile Haskell code, set up
807 # some variables appropriately:
808 HC              =$(GHC_STAGE1)
809 MKDEPENDHS      =$(GHC_STAGE1)
810 GhcVersion      = @ProjectVersion@
811 GhcPatchLevel   = @ProjectPatchLevel@
812 # oops, these are wrong:
813 GhcMajVersion   = @GhcMajVersion@
814 GhcMinVersion   = @GhcMinVersion@
815
816 ghc_ge_504 = YES
817 ghc_ge_601 = YES
818 ghc_ge_602 = YES
819 ghc_ge_603 = YES
820 ghc_ge_605 = YES
821
822 else # not UseStage1 or BootingFromHc
823
824 HC              = @WithHc@
825 MKDEPENDHS      = $(GHC)
826 GhcVersion      = @GhcVersion@
827 GhcPatchLevel   = @GhcPatchLevel@
828 GhcMajVersion   = @GhcMajVersion@
829 GhcMinVersion   = @GhcMinVersion@
830
831 # Some useful GHC version predicates:
832 ghc_ge_504 = $(shell if (test $(GhcCanonVersion) -ge 504); then echo YES; else echo NO; fi)
833 ghc_ge_601 = $(shell if (test $(GhcCanonVersion) -ge 601); then echo YES; else echo NO; fi)
834 ghc_ge_602 = $(shell if (test $(GhcCanonVersion) -ge 602); then echo YES; else echo NO; fi)
835 ghc_ge_603 = $(shell if (test $(GhcCanonVersion) -ge 603); then echo YES; else echo NO; fi)
836 ghc_ge_605 = $(shell if (test $(GhcCanonVersion) -ge 605); then echo YES; else echo NO; fi)
837 endif
838
839 # Canonicalised ghc version number, used for easy (integer) version
840 # comparisons.  We must expand $(GhcMinVersion) to two digits by
841 # adding a leading zero if necessary:
842 ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
843 GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
844 else
845 GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
846 endif
847
848 #-----------------------------------------------------------------------------
849 # C compiler
850 #
851 # NB. Don't override $(WhatGccIsCalled) using build.mk,  re-configure using
852 # the flag --with-gcc=<blah> instead.  The reason is that the configure script
853 # needs to know which gcc you're using in order to perform its tests.
854
855 HaveGcc         = @HaveGcc@
856 UseGcc          = YES
857 WhatGccIsCalled = @WhatGccIsCalled@
858 GccVersion      = @GccVersion@
859 ifeq "$(strip $(HaveGcc))" "YES"
860 ifneq "$(strip $(UseGcc))"  "YES"
861   CC    = cc
862 else
863   CC    = $(WhatGccIsCalled)
864   GccDir = $(dir $(WhatGccIsCalled))
865 endif
866 endif
867
868 # default C compiler flags
869 SRC_CC_OPTS = @SRC_CC_OPTS@
870
871 ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux"
872 SRC_CC_OPTS += -G0
873 endif
874
875 #-----------------------------------------------------------------------------
876 # GMP Library (version 2.0.x or above)
877 #
878 HaveLibGmp      = @HaveLibGmp@
879 LibGmp          = @LibGmp@
880
881 #-----------------------------------------------------------------------------
882 # GMP framework (Mac OS X)
883 #
884 HaveFrameworkGMP = @HaveFrameworkGMP@
885
886 #-----------------------------------------------------------------------------
887 # Mingwex Library
888 #
889 HaveLibMingwEx  = @HaveLibMingwEx@
890
891 #-----------------------------------------------------------------------------
892 # Flex (currently unused, could be moved to glafp-utils)
893
894 # FLEX                  = @LEX@
895 # Don't bother with -lfl, we define our own yywrap()s anyway.
896 # FLEX_LIB              = 
897 #WAS:FLEX_LIB           = @LEXLIB@
898
899 #-----------------------------------------------------------------------------
900 # Other standard (ha!) Unix utilities
901
902 AR                      = @ArCmd@
903 ArSupportsInput         = @ArSupportsInput@
904 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
905 BASH                    = /usr/local/bin/bash
906
907 CONTEXT_DIFF            = @ContextDiffCmd@
908 CP                      = cp
909 CPP                     = @CPP@ @CPPFLAGS@
910 CTAGS                   = $(ETAGS)
911 #
912 # RAWCPP_FLAGS are the flags to give to cpp (viz, gcc -E) to persuade it to
913 # behave plausibly on Haskell sources.
914 #
915 RAWCPP_FLAGS            = -undef -traditional
916 FIND                    = @FindCmd@
917 SORT                    = @SortCmd@
918 INSTALL                 = @INSTALL@
919 #
920 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
921 # install-sh script (if chosen). This not terribly useful to us, so we convert
922 # it into an abs. path.
923
924 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
925 LATEX                   = latex
926 HEVEA                   = hevea
927 HACHA                   = hacha
928 LN_S                    = @LN_S@
929 MANMACROS               = -man
930 MSMACROS                = -ms
931 MV                      = mv
932 NROFF                   = nroff
933 PERL                    = @PerlCmd@
934 PYTHON                  = @PythonCmd@
935 PIC                     = pic
936 PREPROCESSCMD           = $(CC) -E
937 RANLIB                  = @RANLIB@
938 RM                      = rm -f
939 SED                     = @SedCmd@
940 SHELL                   = /bin/sh
941
942 LD                      = @LdCmd@
943
944 # Some ld's support the -x flag and some don't, so the configure
945 # script detects which we have and sets LdXFlag to "-x" or ""
946 # respectively.
947 LD_X                    = @LdXFlag@
948
949 # GNU ld supports input via a linker script, which is useful to avoid
950 # overflowing command-line length limits.
951 LdIsGNULd               = @LdIsGNULd@
952
953 #
954 # In emergency situations, REAL_SHELL is used to perform shell commands
955 # from within the ghc driver script, by scribbling the command line to
956 # a temp file and then having $(REAL_SHELL) execute it. 
957 #
958 # The reason for having to do this is that overly long command lines
959 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
960 # 2.5.1), which is why this backdoor is provided. The situation of overly
961 # long command lines is either encountered while doing `make boot' in compiler/, 
962 # or when linking the compiler binary (`hsc'). 
963 #
964 # We do not use SHELL to execute long commands, as `make' will more than likely
965 # override whatever setting you have in your environment while executing. 
966
967 # By default, REAL_SHELL is set equal to SHELL, which is not really a smart move
968 # as it is SHELL that will show up the bogosity in the first place, but setting
969 # it to anything else isn't really portable.
970 #
971 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
972 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
973 # command shell.
974 #
975 REAL_SHELL=$(SHELL)
976 SIZE                    = size
977 STRIP                   = strip
978 TAR                     = @TarCmd@
979 ZIP                     = zip
980
981 #
982 # This is special to literate/, ToDo: add literate-specific
983 # configure setup to literate/.
984 #
985 TBL                     = tbl
986 TEX                     = tex
987 TGRIND                  = tgrind
988 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
989 TIB                     = tib
990
991 TIME                    = @TimeCmd@
992 TROFF                   = troff
993 UNAME                   = uname
994
995 # GTK+
996 GTK_CONFIG = @GTK_CONFIG@
997
998 #-----------------------------------------------------------------------------
999 # DocBook XML stuff
1000
1001 XSLTPROC                = @XsltprocCmd@
1002 XMLLINT                 = @XmllintCmd@
1003 FOP                     = @FopCmd@
1004 XMLTEX                  = @XmltexCmd@
1005 PDFXMLTEX               = @PdfxmltexCmd@
1006 DVIPS                   = @DvipsCmd@
1007
1008 DIR_DOCBOOK_XSL         = @DIR_DOCBOOK_XSL@
1009
1010 XSLTPROC_LABEL_OPTS     = --stringparam toc.section.depth 3 \
1011                           --stringparam section.autolabel 1 \
1012                           --stringparam section.label.includes.component.label 1
1013
1014 #-----------------------------------------------------------------------------
1015 #               FPtools support software
1016
1017 BLD_DLL                 = dllwrap
1018
1019 #
1020 # .NET support software
1021 #
1022 ILX2IL                  = ilx2il
1023 ILASM                   = ilasm
1024
1025 #
1026 # ghc-pkg
1027 #
1028 GHC_PKG                 = @GhcPkgCmd@
1029
1030 #
1031 # GreenCard
1032 #
1033 GREENCARD               = @GreenCardCmd@
1034 GREENCARD_VERSION       = @GreenCardVersion@            
1035
1036 #
1037 # Happy
1038 #
1039 HAPPY                   = @HappyCmd@
1040 HAPPY_VERSION           = @HappyVersion@                
1041 #
1042 # Options to pass to Happy when we're going to compile the output with GHC
1043 #
1044 GHC_HAPPY_OPTS          = -agc
1045
1046 # Temp. to work around performance problems in the HEAD around 8/12/2003,
1047 # A Happy compiled with this compiler needs more stack.
1048 SRC_HAPPY_OPTS          = +RTS -K2m -RTS
1049
1050 #
1051 # Alex
1052 #
1053 ALEX                    = @AlexCmd@
1054 ALEX_VERSION            = @AlexVersion@         
1055 #
1056 # Options to pass to Happy when we're going to compile the output with GHC
1057 #
1058 GHC_ALEX_OPTS           = -g
1059
1060 #
1061 # Haddock
1062
1063 HADDOCK                 = @HaddockCmd@
1064
1065 #
1066 # Options for compiling in different `ways'. 
1067
1068 # To configure up your own way, have a look at some of the standard ways
1069 # such as profiling, and create your own set of WAY_*_OPTS defs below.
1070 # After having done that, add your way string to WAYS, and after having
1071 # run the configure script, the different projects will add the new way
1072 # to the list of ways they support.
1073 #
1074
1075 #
1076 # Definitions of the different ways:
1077 #   
1078 #   * their name:
1079 #          - tag, e.g., p
1080 #          - description, e.g., profiling
1081 #   * what they mean to the driver:
1082 #          - WAY_p_HC_OPTS gives the list of command-line options
1083 #            to the driver.
1084 #
1085
1086 #
1087 # The ways currently defined.
1088 #
1089 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
1090 USER_WAYS=a b c d e f g h j k l m n o A B
1091
1092 #
1093 # The following ways currently have treated specially, p u t mg,
1094 # as the driver script treats these guys specially and needs to carefully be told
1095 # about the options for these. Hence, we hide the required command line options
1096 # for these in the driver, as this is the only place they are needed.
1097
1098 # If you want to add to these default options, fill in the variables below:
1099
1100 # Way 'i':
1101 WAY_i_NAME=ILX
1102 WAY_i_HC_OPTS= -filx -fruntime-types
1103
1104 # Way 'p':
1105 WAY_p_NAME=profiling
1106 WAY_p_HC_OPTS= -prof
1107
1108 # Way 't':
1109 WAY_t_NAME=ticky-ticky profiling
1110 WAY_t_HC_OPTS= -ticky
1111
1112 # Way `u':
1113 WAY_u_NAME=unregisterized (using portable C only)
1114 WAY_u_HC_OPTS=-unreg
1115
1116 # Way `mp': 
1117 WAY_mp_NAME=parallel
1118 WAY_mp_HC_OPTS=-parallel
1119
1120 # Way `mg': 
1121 WAY_mg_NAME=GranSim
1122 WAY_mg_HC_OPTS=-gransim
1123
1124 #
1125 # These ways apply to the RTS only:
1126 #
1127
1128 # Way 'thr':
1129 WAY_thr_NAME=threaded
1130 WAY_thr_HC_OPTS=-optc-DTHREADED_RTS
1131
1132 # Way 'thr_p':
1133 WAY_thr_p_NAME=threaded profiled
1134 WAY_thr_p_HC_OPTS=-optc-DTHREADED_RTS -prof
1135
1136 # Way 'debug':
1137 WAY_debug_NAME=debug
1138 WAY_debug_HC_OPTS=-optc-DDEBUG
1139
1140 # Way 'debug_p':
1141 WAY_debug_p_NAME=debug profiled
1142 WAY_debug_p_HC_OPTS=-optc-DDEBUG -prof
1143
1144 # Way 'debug_u':
1145 WAY_debug_u_NAME=debug unregisterised
1146 WAY_debug_u_HC_OPTS=-optc-DDEBUG -unreg
1147
1148 # Way 'thr_debug':
1149 WAY_thr_debug_NAME=threaded
1150 WAY_thr_debug_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG
1151
1152 # Way 'thr_debug_p':
1153 WAY_thr_debug_p_NAME=threaded
1154 WAY_thr_debug_p_HC_OPTS=-optc-DTHREADED_RTS -optc-DDEBUG -prof
1155
1156 #
1157 # Add user-way configurations here:
1158 #
1159 WAY_A_NAME=
1160 WAY_A_HC_OPTS=
1161
1162 WAY_B_NAME=
1163 WAY_B_HC_OPTS=
1164
1165 WAY_a_NAME=
1166 WAY_a_HC_OPTS=
1167
1168 WAY_b_NAME=
1169 WAY_b_HC_OPTS=
1170
1171 WAY_c_NAME=
1172 WAY_c_HC_OPTS=
1173
1174 WAY_d_NAME=
1175 WAY_d_HC_OPTS=
1176
1177 WAY_e_NAME=
1178 WAY_e_HC_OPTS=
1179
1180 WAY_f_NAME=
1181 WAY_f_HC_OPTS=
1182
1183 WAY_g_NAME=
1184 WAY_g_HC_OPTS=
1185
1186 WAY_h_NAME=
1187 WAY_h_HC_OPTS=
1188
1189 WAY_j_NAME=
1190 WAY_j_HC_OPTS=
1191
1192 WAY_k_NAME=
1193 WAY_k_HC_OPTS=
1194
1195 WAY_l_NAME=
1196 WAY_l_HC_OPTS=
1197
1198 WAY_m_NAME=
1199 WAY_m_HC_OPTS=
1200
1201 WAY_n_NAME=
1202 WAY_n_HC_OPTS=
1203
1204 WAY_o_NAME=
1205 WAY_o_HC_OPTS=
1206
1207 ################################################################################
1208 #
1209 #               31-bit-Int Core files
1210 #
1211 ################################################################################
1212
1213
1214 # It is possible to configure the compiler and prelude to support 31-bit
1215 # integers, suitable for a back-end and RTS using a tag bit on a 32-bit
1216 # architecture.  Currently the only useful output from this option is external Core
1217 # files.  The following additions to your build.mk will produce the
1218 # 31-bit core output.  Note that this is *not* just a library "way"; the
1219 # compiler must be built a special way too.
1220
1221 # GhcCppOpts +=-DWORD_SIZE_IN_BITS=31
1222 # GhcLibHcOpts +=-fext-core -fno-code -DWORD_SIZE_IN_BITS=31
1223 # GhcLibCppOpts += -DWORD_SIZE_IN_BITS=31
1224 # SplitObjs=NO
1225