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