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