[project @ 1997-09-22 13:42:51 by simonm]
[ghc-hetmet.git] / mk / config.mk.in
1 #
2 # @configure_input@
3 #
4 #################################################################################
5 #
6 #                       config.mk.in-template
7 #
8 #       This file defines all the variables that set the configuration of
9 #       a particular build.
10 #
11 #
12 #################################################################################
13
14 # The configuration is defined in two steps:
15 #
16 #       1. The builder (i.e. the person doing the build)
17 #          copies this file, config.mk.in-template
18 #          to config.mk.in
19 #
20 #       2. S/he then edits it manually (gasp) to reflect any configuration
21 #          options s/he wants.
22 #
23 #       3. Then s/he runs "configure", which generates config.mk from
24 #          config.mk.in, substituting for system/platform-dependent things
25 #          enclosed in @at-signs@.
26 #
27 # This is one of only two files that configure generates (the other is config.h)
28 #
29 # Note that after subsequent edits of config.mk.in for a build, the configure script
30 # will have to be re-run manually to have the change reflected in config.mk. 
31 #
32
33 # There is a section below for each project within the fptools suite
34 #
35 #       PLUS
36 #
37 # a section corresponding to each of the main .mk files 
38 # included by boilerplate.mk (see boilerplate.mk for a list).
39
40
41 #################################################################################
42 #
43 #               Project-wide platform variables
44 #
45 #################################################################################
46
47 # A "platform" is the GNU cpu-type/manufacturer/operating-system target machine
48 # specifier.  E.g. sparc-sun-solaris2
49
50 HOSTPLATFORM                    = @HostPlatform@
51 TARGETPLATFORM                  = @TargetPlatform@
52 BUILDPLATFORM                   = @HostPlatform@
53
54 # Hack alert:
55 # in one or two places, we need to get at the OS version (major and perhaps even minor),
56 # HostOS_Full is the OS name reported by AC_CANONICAL_SYSTEM.
57 #
58 HostPlatform_CPP                = @HostPlatform_CPP@
59 HostArch_CPP                    = @HostArch_CPP@
60 HostOS_CPP                      = @HostOS_CPP@
61 HostOS_Full                     = @HostOS_Full@
62 HostVendor_CPP                  = @HostVendor_CPP@
63
64 #
65 # ToDo: check if these can be purged now. -- sof
66 #
67
68 @HostPlatform_CPP@_HOST        = 1
69 @HostPlatform_CPP@_TARGET      = 1
70 @HostPlatform_CPP@_BUILD       = 1
71
72 @HostArch_CPP@_HOST_ARCH       = 1
73 @HostArch_CPP@_TARGET_ARCH      = 1
74 @HostArch_CPP@_BUILD_ARCH      = 1
75
76 @HostOS_CPP@_HOST_OS           = 1
77 @HostOS_CPP@_TARGET_OS         = 1
78 @HostOS_CPP@_BUILD_OS          = 1
79
80 @HostVendor_CPP@_HOST_VENDOR    = 1
81 @HostVendor_CPP@_TARGET_VENDOR  = 1
82 @HostVendor_CPP@_BUILD_VENDOR   = 1
83
84 # Leading underscores on symbol names in object files
85 # Valid options: YES/NO
86 #
87 LeadingUnderscore=@LeadingUnderscore@
88
89
90 #################################################################################
91 #
92 #               project-wide flags
93 #
94 #       Set of options applicable to all fptools projects
95 #
96 #################################################################################
97
98 #
99 # What parts to build: An fptools build tree does not have to be built
100 # all in one go. By setting the list of ProjectsToBuild in build.mk you can
101 # control which projects are built.
102 #
103 # Caution: the projects are built in the order given here, so if some
104 # projects use others you must list them in the correct order.
105 #
106 # Generally:    * glafp-utils should be first
107 #               * literate next
108 #               * happy next
109 #               * ghc&hslibs next
110 #               then it's up to you
111
112 ProjectsToBuild   = glafp-utils literate happy ghc hslibs
113 #
114 # Make a distinction between building and installing, ProjectsToInstall
115 # does not include the literate bits..
116 #
117 ProjectsToInstall = glafp-utils happy ghc hslibs
118
119 #
120 # Should the various project tests directories be built?
121 #
122 IncludeTestDirsInBuild=NO
123
124 #################################################################################
125 #
126 #               GHC project
127
128 #       Set of (configurable) options needed by the ghc tree
129 #       plus their default options (if any).
130 #
131 #################################################################################
132
133 #
134 # Name variables for ghc:
135
136 GhcProjectName       =The Glorious Glasgow Haskell Compilation System
137 GhcProjectNameShort  =ghc
138 GhcProjectVersion    =2.07
139 GhcProjectPatchLevel =0
140
141 #
142 # Name variables for the fptools, for now equal to the above
143 # ghc stuff
144 #
145 ProjectName       =$(GhcProjectName)
146 ProjectNameShort  =$(GhcProjectNameShort)
147 ProjectVersion    =$(GhcProjectVersion)
148 ProjectPatchLevel =$(GhcProjectPatchLevel)
149
150
151 #---------------------------------------------------------------
152 #
153 # Variables that control how the compiler itself is built
154
155 # Specify the Haskell compiler to be used to compile the compiler itself
156 #
157 #   WithGhcHc      Path name of the compiler to use
158 #
159 #   Ghc2_0         Whether this compiler is GHC 2.0 or later
160 #                  (which affects gruesome details about
161 #                  how mutually recursive modules are handled)
162 #
163 #   WithGhcHcType  What "type" of compiler is being used
164 #                  Valid options:
165 #                            HC_CHALMERS_HBC
166 #                            HC_GLASGOW_GHC
167 #                            HC_ROJEMO_NHC
168 #                            HC_UNSPECIFIED
169
170 WithGhcHc = ghc-0.29
171 Ghc2_0=NO
172
173 # Unused, we think
174 # WithGhcHcType=HC_GLASGOW_GHC
175
176 # Extra ways in which to build the compiler (for example, you might want to
177 # build a profiled compiler so you can see where it spends its time)
178 GhcCompilerWays=
179
180 # Extra option flags to pass to the compiler that compiles the compiler
181 # (Ones that are essential are wired into ghc/compiler/Makefile)
182 # Typical ones:
183 #       -H25m           allocate a bigger heap (default is 6m)
184 #
185 #       -O              compile an optimised compiler
186 #                       NB! If you add -O you'll almost certainly need to increase
187 #                       the amount of heap space too (to 15m or more)
188 #
189 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
190 #
191 #       -dcore-lint     check the types after every pass of the compiler;
192 #                       a pretty strong internal check
193 GhcHcOpts=
194
195 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
196 GhcWithHscBuiltViaC=NO
197
198 # Build hsc with -O and turn optimising flag on when compiling
199 # the intermediate C file
200 GhcUseGccForOptAsm=YES
201
202 # Compile intermediate C file with debugging options set.
203 GhcUseGccForDebuggingAsm=YES
204
205 # Build a registerised version of hsc and runtime
206 # (you'd be desperate or silly not to).
207 GhcWithRegisterised=YES
208
209 # Build a compiler with a native code generator backend
210 # (as well as a C backend)
211 #
212 # Target platforms supported:
213 #   i386, alpha & sparc
214 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
215
216 # Build the compiler with the deforester included?
217 GhcWithDeforester=NO
218
219 #
220 # Building various ways?
221 # (right now, empty if not).
222 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
223 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
224 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
225 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
226 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
227
228 #---------------------------------------------------------------
229 #
230 # Variables that control how the prelude libraries and runtime system are built
231
232 # What extra ways to build the libraries in
233 # In addition to the normal sequential way, the default is to also build
234 # profiled prelude libraries.
235 GhcLibWays=p
236
237 # Option flags to pass to GHC when it's compiling prelude modules
238 # Typically these are things like -O or -dcore-lint
239 # The ones that are *essential* are wired into ghc/lib/Makefile
240 #
241 #       -O is pretty desirable, otherwise no inlining of prelude
242 #               things (incl "+") happens when compiling with this compiler
243
244 GhcLibHcOpts= -O -split-objs -odir $(basename $*)
245
246
247 #################################################################################
248 #
249 #               hslibs project
250 #
251 #       Set of (configurable) options needed by the Haskell libraries (hslibs)
252 #       plus their default options (if any).
253 #
254 #################################################################################
255
256 # Build the Haskell Readline bindings?
257 #
258 HsLibsWithReadline=NO
259 #
260 # Include path to readline.h
261 # (no path == in standard include path)
262 #
263 ReadlineIncludePath=
264
265 # Build the socket libraries?
266 #
267 HsLibsWithSockets=YES
268
269 #
270 # The different ways to build hslibs. Default is just to mirror
271 # what is done for the ghc prelude libraries.
272 #
273 HsLibWays=$(GhcLibWays)
274
275 # Option flags for hslibs are by default the same as for the options
276 # used for the prelude libs (see above).
277 HsLibHcOpts=$(GhcLibHcOpts)
278
279 #################################################################################
280 #
281 #               happy project
282 #
283 #       Happy specific options
284 #
285 #################################################################################
286
287 # The compiler you'd like to use to compile Happy
288 WithHappyHc = $(WithGhcHc)
289
290 # HappyHcOpts gives the flags to pass to the Haskell compiler used
291 #             to compile the Happy source coed
292 HappyHcOpts = 
293
294
295 #################################################################################
296 #
297 #               haggis project
298 #
299 #       Haggis specific options
300 #
301 #################################################################################
302
303
304
305 #################################################################################
306 #
307 #               green-card project
308 #
309 #       Green-card specific options
310 #
311 #################################################################################
312
313
314 #################################################################################
315 #
316 #               nofib project
317 #
318 #       nofib specific options
319 #
320 #################################################################################
321
322
323 # NoFibSubDirs controls which set of tests should be run
324 # You can run one or more of
325 #       imaginary 
326 #       spectral
327 #       real
328 #       parallel
329 #       PRIVATE
330 #       GHC_ONLY
331 #       PENDING
332 #       UNUSED
333 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
334
335 # The different ways to build nofib. Default is just to mirror
336 # what is done for the ghc prelude libraries.
337 #
338 NoFibWays=$(GhcLibWays)
339
340 # Haskell compiler options for nofib
341 NoFibHcOpts=
342
343 # ==============================================================================
344 #
345 #                       END OF PROJECT-SPECIFIC STUFF
346 #
347 #               Now come the generic configuration options
348 #
349 # ==============================================================================
350
351 #################################################################################
352 #
353 #               Paths (see paths.mk)
354 #
355 #################################################################################
356
357 TMPDIR                  = /tmp
358
359 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
360
361 FPTOOLS_TOP_ABS         = @hardtop@
362
363 #
364 # Installation directories, we don't use half of these,
365 # but since the configure script has them on offer while
366 # passing through, we might as well set them.
367
368 prefix                  = @prefix@
369 exec_prefix             = @exec_prefix@
370 bindir                  = @bindir@
371 #UNUSED, see below: libexecdir              = @libexecdir@
372 datadir                 = @datadir@
373 #sysconfdir              = @datadir@
374 #sharedstatedir          = @sharedstatedir@
375 #localstatedir           = @localstatedir@
376 libdir                  = @libdir@
377 infodir                 = @infodir@
378 includedir              = @includedir@
379 oldincludedir           = @oldincludedir@
380 mandir                  = @mandir@
381 #UNUSED:srcdir          = @srcdir@
382
383
384 # Default values for most of the above are only set if
385 # they weren't configured to anything in particular
386 # via the configure script. (i.e., we make no assumption
387 # that the autoconf-generated script will assign defaults
388 # to all of the above).
389 #
390 ifeq "$(strip $(exec_prefix))" ""
391 exec_prefix             = $(prefix)
392 endif
393 ifeq "$(strip $(bindir))" ""
394 bindir                  = $(exec_prefix)/bin
395 endif
396
397 #
398 # NOTE: by intention, libexecdir and libdir point to 
399 # the same place.
400 #  => Only way to override this is to set libexecdir= on the command line.
401 #     (NOTE: configure script setting is ignored).
402 libexecdir              = $(libdir)
403
404 ifeq "$(strip $(datadir))" ""
405 datadir         = $(prefix)/share
406 endif
407 ifeq "$(strip $(libdir))" ""
408 libdir          = $(exec_prefix)/lib
409 endif
410 ifeq "$(strip $(infodir))" ""
411 infodir         = $(prefix)/info
412 endif
413 ifeq "$(strip $(includedir))" ""
414 includedir      = $(prefix)/include
415 endif
416 ifeq "$(strip $(oldincludedir))" ""
417 oldincludedir   = /usr/include
418 endif
419 ifeq "$(strip $(mandir))" ""
420 mandir          = $(prefix)/man
421 endif
422  
423
424 #################################################################################
425 #
426 #               Utilities programs: flags
427 #
428 #################################################################################
429
430 # If you want to give any standard flags to pretty much any utility
431 # (see utils.mk for a complete list), by adding a line here
432 #
433 #       SRC_P_OPTS += ...
434 #
435 # where P is the utility. For example, to add -O to all Haskell
436 # compilations, 
437 #
438 #       SRC_HC_OPTS += -O
439
440
441 #################################################################################
442 #
443 #               Utilities programs: where to find them
444 #
445 #################################################################################
446
447 #-----------------------------------------------------------------------------
448 # FPtools Utility locations
449
450 # By default, the various utils needed to be build ghc and chums
451 # is set up to point to the utils/ directory. Define here the
452 # path prefix for the utilities. Notice that it's a prefix with
453 # a trailing slash, so that it can be concatenated directly on
454 # front of a program name; if it's not set then we just look
455 # along the shell's $(PATH)
456 #
457 # If instead you want to use installed or your own versions of these,
458 # override the various *_PREFIX in build.mk, i.e., having the following
459 # in build.mk:
460 #
461 #   FASTMAKE_PREFIX=
462 #
463 # will force `make' to rummage around in your PATH to find `fastmake' (not
464 # sure it would need it in the first place, but still).
465 #
466 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
467
468 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
469 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
470 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
471 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
472 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
473 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
474 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
475 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
476 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
477 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
478
479 # Still used?
480 LITERATE                = $(FPTOOLS_TOP)/literate
481
482 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
483 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
484 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
485
486 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
487 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
488
489 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
490 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
491 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
492 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
493 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
494 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
495
496
497 #-----------------------------------------------------------------------------
498 # Haskell compiler and mkdependHS
499
500 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
501 MKDEPENDHS      = $(HC)
502
503 #
504 # The compiler proper is built with the 1.2 compiler,
505 # so when building the dependencies, we need mkdependHS
506 # for the 1.2 compiler.
507 #
508 MKDEPENDHS_1_2  = mkdependHS-1.2
509
510 #-----------------------------------------------------------------------------
511 # C compiler
512 #
513 #
514 HaveGcc         = @HaveGcc@
515 UseGcc          = YES
516 WhatGccIsCalled = gcc
517 ifeq "$(strip $(HaveGcc))" "YES"
518 ifneq "$(strip $(UseGcc))"  "YES"
519   CC    = cc
520 else
521   CC    = $(WhatGccIsCalled)
522 endif
523 endif
524
525 #-----------------------------------------------------------------------------
526 # Flex
527
528 FLEX                    = @LEX@
529 FLEX_LIB                = @LEXLIB@
530
531 #-----------------------------------------------------------------------------
532 # Other standard (ha!) Unix utilities
533
534 AR                      = @ArCmd@
535 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
536 BASH                    = /usr/local/bin/bash
537 #
538 # Could be either gzip or compress
539 #
540 COMPRESS                = @CompressCmd@
541 COMPRESS_SUFFIX         = @CompressSuffix@
542
543 CONTEXT_DIFF            = @ContextDiffCmd@
544 CP                      = cp
545 CPP                     = @RAWCPP@
546 CTAGS                   = $(ETAGS)
547 RAWCPP                  = @RAWCPP@
548 GNUCPP                  = @GNUCPP@
549 INSTALL                 = @INSTALL@
550 #
551 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
552 # install-sh script (if chosen). This not terribly useful to us, so we convert
553 # it into an abs. path.
554
555 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
556 LATEX                   = latex
557 LN_S                    = @LN_S@
558 MANMACROS               = -man
559 MSMACROS                = -ms
560 MV                      = mv
561 NROFF                   = nroff
562 PERL                    = @PerlCmd@
563 PIC                     = pic
564 PREPROCESSCMD           = $(CC) -E
565 PRINTER                 = lpr
566 RANLIB                  = @RANLIB@
567 RM                      = rm -f
568 SED                     = @SedCmd@
569 SHELL                   = /bin/sh
570 #
571 # In emergency situations, REAL_SHELL is used to perform shell commands
572 # from within the ghc driver script, by scribbling the command line to
573 # a temp file and then having $(REAL_SHELL) execute it. 
574 #
575 # The reason for having to do this is that overly long command lines
576 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
577 # 2.5.1), which is why this backdoor is provided. The situation of overly
578 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
579 # or when linking the compiler binary (`hsc'). 
580 #
581 # We do not use SHELL to execute long commands, as `make' will more than likely
582 # override whatever setting you have in your environment while executing. 
583
584 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
585 # as it SHELL that will show up the bogosity in the first place, but setting
586 # it to anything else isn't really portable.
587 #
588 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
589 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
590 # command shell.
591 #
592 REAL_SHELL=$(SHELL)
593 SIZE                    = size
594 STRIP                   = strip
595 TAR                     = @TarCmd@
596 #
597 # This is special to literate/, ToDo: add literate-specific
598 # configure setup to literate/.
599 #
600 TBL                     = tbl
601 TEX                     = tex
602 TGRIND                  = tgrind
603 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
604 TIB                     = tib
605
606 TIME                    = @TimeCmd@
607 TROFF                   = troff
608 UNAME                   = uname
609 YACC                    = @YaccCmd@
610
611
612 #-----------------------------------------------------------------------------
613 #               FPtools support software
614
615 # Stuff from fptools/glafp-utils
616 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
617 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
618 LTX                     = $(LTX_PREFIX)ltx
619 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
620 LNDIR                   = $(LNDIR_PREFIX)lndir
621 MSUB                    = $(MSUB_PREFIX)msub
622 ETAGS                   = $(ETAGS_PREFIX)etags
623 VERBATIM                = $(VERBATIM_PREFIX)verbatim
624 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
625 HAPPY                   = @HappyCmd@
626 HAPPY_VERSION           = @HappyVersion@                
627 LX                      = @LxCmd@
628 GREENCARD               = @GreencardCmd@
629
630 ifeq "$(HAPPY)" ""
631 HAPPY                   = $(HAPPY_PREFIX)happy
632 endif
633
634 #
635 # Stuff from fptools/literate
636 #
637 INFO                    = $(UTIL_PREFIX)info
638 MAKEINFO                = $(INFO_PREFIX)makeinfo
639 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
640 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
641 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
642 LIT2HTML                = $(LITERATE_PREFIX)lit2html
643 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
644 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
645 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
646 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
647 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
648
649 #
650 # Stuff from fptools/ghc/utils
651 #
652 UNLIT                   = $(UNLIT_PREFIX)unlit
653 UGEN                    = $(UGEN_PREFIX)ugen
654 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
655 HP2PS                   = $(HP2PS_PREFIX)hp2ps
656 HSCPP                   = $(HSCPP_PREFIX)hscpp
657 HSTAGS                  = $(HSTAGS_PREFIX)hstags
658
659 #
660 # Options for the compiling different `ways'. Various projects within
661 # the glorious fptools tree support building in various user-configured
662 # ways. For instance, you could set up one `way' such that the prelude
663 # libraries and hslibs all were built with the option -ffoldr-build-on.
664
665 # To configure up your own way, have a look at some of the standard ways
666 # such as profiling, and create your own set of WAY_*_OPTS defs below.
667 # After having done that, add your way string to WAYS, and after having
668 # run the configure script, the different projects will add the new way
669 # to the list of ways they support.
670 #
671
672 #
673 # IMPORTANT! The WAYS variable configures the different `ways'
674 # you want to build a project (or maybe just parts of it, as is
675 # the case for ghc/). This variable is intended set inside the
676 # project mk setup, enforcing a global fptools WAYS is a bit too
677 # much (do you *really* want to build glafp-utils the profiled-concurrent 
678 # way?)
679 #
680
681 #
682 # Definitions of the different ways:
683 #   
684 #   * their name:
685 #          - tag, e.g., p
686 #          - description, e.g., profiling
687 #   * what they mean to the driver:
688 #          - WAY_p_HC_OPTS gives the list of command-line options
689 #            to the driver.
690 #
691
692 #
693 # The ways currently defined.
694 #
695 ALL_WAYS=p t u mc mr mt mp mg 1s 2s du a b c d e f g h i j k l m n o A B
696
697 #
698 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
699 # as the driver script treats these guys specially and needs to carefully be told
700 # about the options for these. Hence, we hide the required command line options
701 # for these in the ghc/driver, as this is the only place they are needed.
702
703 # If you want to add to these default options, fill in the variables below:
704
705 WAY_p_NAME=profiling
706 WAY_p_HC_OPTS= -prof
707
708 # Way t:
709 WAY_t_NAME=ticky-ticky profiling
710 WAY_t_HC_OPTS= -ticky
711
712 # Way `u':
713 WAY_u_NAME=unregisterized (using portable C only)
714 WAY_u_HC_OPTS=
715
716 # Way `mc': concurrent
717 WAY_mc_NAME=concurrent
718 WAY_mc_HC_OPTS=-concurrent
719
720 # Way `mr': 
721 WAY_mr_NAME=profiled concurrent
722 WAY_mr_HC_OPTS=-prof -concurrent
723
724 # Way `mt': 
725 WAY_mt_NAME=ticky-ticky concurrent
726 WAY_mt_HC_OPTS=-ticky -concurrent
727
728 # Way `mp': 
729 WAY_mp_NAME=parallel
730 WAY_mp_HC_OPTS=-parallel
731
732 #
733 # Way `mg': 
734 #
735 WAY_mg_NAME=GranSim
736 WAY_mg_HC_OPTS=-gransim
737
738 #
739 # Ways for different garbage collectors
740 #
741 WAY_2s_NAME=2-space GC
742 WAY_2s_HC_OPTS=-2s
743
744 WAY_1s_NAME=1-space GC
745 WAY_1s_HC_OPTS=-1s
746
747 WAY_du_NAME=dual-mode GC
748 WAY_du_HC_OPTS=-du
749
750 #
751 # Add user-way configurations here:
752 #
753 WAY_A_NAME=
754 WAY_A_HC_OPTS=
755
756 WAY_B_NAME=
757 WAY_B_HC_OPTS=
758
759 WAY_a_NAME=
760 WAY_a_HC_OPTS=
761
762 WAY_b_NAME=
763 WAY_b_HC_OPTS=
764
765 WAY_c_NAME=
766 WAY_c_HC_OPTS=
767
768 WAY_d_NAME=
769 WAY_d_HC_OPTS=
770
771 WAY_e_NAME=
772 WAY_e_HC_OPTS=
773
774 WAY_f_NAME=
775 WAY_f_HC_OPTS=
776
777 WAY_g_NAME=
778 WAY_g_HC_OPTS=
779
780 WAY_h_NAME=
781 WAY_h_HC_OPTS=
782
783 WAY_i_NAME=
784 WAY_i_HC_OPTS=
785
786 WAY_j_NAME=
787 WAY_j_HC_OPTS=
788
789 WAY_k_NAME=
790 WAY_k_HC_OPTS=
791
792 WAY_l_NAME=
793 WAY_l_HC_OPTS=
794
795 WAY_m_NAME=
796 WAY_m_HC_OPTS=
797
798 WAY_n_NAME=
799 WAY_n_HC_OPTS=
800
801 WAY_o_NAME=
802 WAY_o_HC_OPTS=