[project @ 1997-09-24 10:18:31 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 #
217 # Building various ways?
218 # (right now, empty if not).
219 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
220 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
221 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
222 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
223 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
224
225 #---------------------------------------------------------------
226 #
227 # Variables that control how the prelude libraries and runtime system are built
228
229 # What extra ways to build the libraries in
230 # In addition to the normal sequential way, the default is to also build
231 # profiled prelude libraries.
232 GhcLibWays=p
233
234 # Option flags to pass to GHC when it's compiling prelude modules
235 # Typically these are things like -O or -dcore-lint
236 # The ones that are *essential* are wired into ghc/lib/Makefile
237 #
238 #       -O is pretty desirable, otherwise no inlining of prelude
239 #               things (incl "+") happens when compiling with this compiler
240
241 GhcLibHcOpts= -O -split-objs -odir $(basename $*)
242
243
244 #################################################################################
245 #
246 #               hslibs project
247 #
248 #       Set of (configurable) options needed by the Haskell libraries (hslibs)
249 #       plus their default options (if any).
250 #
251 #################################################################################
252
253 # Build the Haskell Readline bindings?
254 #
255 HsLibsWithReadline=NO
256 #
257 # Include path to readline.h
258 # (no path == in standard include path)
259 #
260 ReadlineIncludePath=
261
262 # Build the socket libraries?
263 #
264 HsLibsWithSockets=YES
265
266 #
267 # The different ways to build hslibs. Default is just to mirror
268 # what is done for the ghc prelude libraries.
269 #
270 HsLibWays=$(GhcLibWays)
271
272 # Option flags for hslibs are by default the same as for the options
273 # used for the prelude libs (see above).
274 HsLibHcOpts=$(GhcLibHcOpts)
275
276 #################################################################################
277 #
278 #               happy project
279 #
280 #       Happy specific options
281 #
282 #################################################################################
283
284 # The compiler you'd like to use to compile Happy
285 WithHappyHc = $(WithGhcHc)
286
287 # HappyHcOpts gives the flags to pass to the Haskell compiler used
288 #             to compile the Happy source coed
289 HappyHcOpts = 
290
291
292 #################################################################################
293 #
294 #               haggis project
295 #
296 #       Haggis specific options
297 #
298 #################################################################################
299
300
301
302 #################################################################################
303 #
304 #               green-card project
305 #
306 #       Green-card specific options
307 #
308 #################################################################################
309
310
311 #################################################################################
312 #
313 #               nofib project
314 #
315 #       nofib specific options
316 #
317 #################################################################################
318
319
320 # NoFibSubDirs controls which set of tests should be run
321 # You can run one or more of
322 #       imaginary 
323 #       spectral
324 #       real
325 #       parallel
326 #       PRIVATE
327 #       GHC_ONLY
328 #       PENDING
329 #       UNUSED
330 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
331
332 # The different ways to build nofib. Default is just to mirror
333 # what is done for the ghc prelude libraries.
334 #
335 NoFibWays=$(GhcLibWays)
336
337 # Haskell compiler options for nofib
338 NoFibHcOpts=
339
340 # ==============================================================================
341 #
342 #                       END OF PROJECT-SPECIFIC STUFF
343 #
344 #               Now come the generic configuration options
345 #
346 # ==============================================================================
347
348 #################################################################################
349 #
350 #               Paths (see paths.mk)
351 #
352 #################################################################################
353
354 TMPDIR                  = /tmp
355
356 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
357
358 FPTOOLS_TOP_ABS         = @hardtop@
359
360 #
361 # Installation directories, we don't use half of these,
362 # but since the configure script has them on offer while
363 # passing through, we might as well set them.
364
365 prefix                  = @prefix@
366 exec_prefix             = @exec_prefix@
367 bindir                  = @bindir@
368 #UNUSED, see below: libexecdir              = @libexecdir@
369 datadir                 = @datadir@
370 #sysconfdir              = @datadir@
371 #sharedstatedir          = @sharedstatedir@
372 #localstatedir           = @localstatedir@
373 libdir                  = @libdir@
374 infodir                 = @infodir@
375 includedir              = @includedir@
376 oldincludedir           = @oldincludedir@
377 mandir                  = @mandir@
378 #UNUSED:srcdir          = @srcdir@
379
380
381 # Default values for most of the above are only set if
382 # they weren't configured to anything in particular
383 # via the configure script. (i.e., we make no assumption
384 # that the autoconf-generated script will assign defaults
385 # to all of the above).
386 #
387 ifeq "$(strip $(exec_prefix))" ""
388 exec_prefix             = $(prefix)
389 endif
390 ifeq "$(strip $(bindir))" ""
391 bindir                  = $(exec_prefix)/bin
392 endif
393
394 #
395 # NOTE: by intention, libexecdir and libdir point to 
396 # the same place.
397 #  => Only way to override this is to set libexecdir= on the command line.
398 #     (NOTE: configure script setting is ignored).
399 libexecdir              = $(libdir)
400
401 ifeq "$(strip $(datadir))" ""
402 datadir         = $(prefix)/share
403 endif
404 ifeq "$(strip $(libdir))" ""
405 libdir          = $(exec_prefix)/lib
406 endif
407 ifeq "$(strip $(infodir))" ""
408 infodir         = $(prefix)/info
409 endif
410 ifeq "$(strip $(includedir))" ""
411 includedir      = $(prefix)/include
412 endif
413 ifeq "$(strip $(oldincludedir))" ""
414 oldincludedir   = /usr/include
415 endif
416 ifeq "$(strip $(mandir))" ""
417 mandir          = $(prefix)/man
418 endif
419  
420
421 #################################################################################
422 #
423 #               Utilities programs: flags
424 #
425 #################################################################################
426
427 # If you want to give any standard flags to pretty much any utility
428 # (see utils.mk for a complete list), by adding a line here
429 #
430 #       SRC_P_OPTS += ...
431 #
432 # where P is the utility. For example, to add -O to all Haskell
433 # compilations, 
434 #
435 #       SRC_HC_OPTS += -O
436
437
438 #################################################################################
439 #
440 #               Utilities programs: where to find them
441 #
442 #################################################################################
443
444 #-----------------------------------------------------------------------------
445 # FPtools Utility locations
446
447 # By default, the various utils needed to be build ghc and chums
448 # is set up to point to the utils/ directory. Define here the
449 # path prefix for the utilities. Notice that it's a prefix with
450 # a trailing slash, so that it can be concatenated directly on
451 # front of a program name; if it's not set then we just look
452 # along the shell's $(PATH)
453 #
454 # If instead you want to use installed or your own versions of these,
455 # override the various *_PREFIX in build.mk, i.e., having the following
456 # in build.mk:
457 #
458 #   FASTMAKE_PREFIX=
459 #
460 # will force `make' to rummage around in your PATH to find `fastmake' (not
461 # sure it would need it in the first place, but still).
462 #
463 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
464
465 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
466 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
467 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
468 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
469 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
470 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
471 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
472 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
473 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
474 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
475
476 # Still used?
477 LITERATE                = $(FPTOOLS_TOP)/literate
478
479 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
480 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
481 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
482
483 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
484 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
485
486 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
487 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
488 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
489 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
490 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
491 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
492
493
494 #-----------------------------------------------------------------------------
495 # Haskell compiler and mkdependHS
496
497 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
498 MKDEPENDHS      = $(HC)
499
500 #
501 # The compiler proper is built with the 1.2 compiler,
502 # so when building the dependencies, we need mkdependHS
503 # for the 1.2 compiler.
504 #
505 MKDEPENDHS_1_2  = mkdependHS-1.2
506
507 #-----------------------------------------------------------------------------
508 # C compiler
509 #
510 #
511 HaveGcc         = @HaveGcc@
512 UseGcc          = YES
513 WhatGccIsCalled = gcc
514 ifeq "$(strip $(HaveGcc))" "YES"
515 ifneq "$(strip $(UseGcc))"  "YES"
516   CC    = cc
517 else
518   CC    = $(WhatGccIsCalled)
519 endif
520 endif
521
522 #-----------------------------------------------------------------------------
523 # Flex
524
525 FLEX                    = @LEX@
526 FLEX_LIB                = @LEXLIB@
527
528 #-----------------------------------------------------------------------------
529 # Other standard (ha!) Unix utilities
530
531 AR                      = @ArCmd@
532 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
533 BASH                    = /usr/local/bin/bash
534 #
535 # Could be either gzip or compress
536 #
537 COMPRESS                = @CompressCmd@
538 COMPRESS_SUFFIX         = @CompressSuffix@
539
540 CONTEXT_DIFF            = @ContextDiffCmd@
541 CP                      = cp
542 CPP                     = @RAWCPP@
543 CTAGS                   = $(ETAGS)
544 RAWCPP                  = @RAWCPP@
545 GNUCPP                  = @GNUCPP@
546 INSTALL                 = @INSTALL@
547 #
548 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
549 # install-sh script (if chosen). This not terribly useful to us, so we convert
550 # it into an abs. path.
551
552 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
553 LATEX                   = latex
554 LN_S                    = @LN_S@
555 MANMACROS               = -man
556 MSMACROS                = -ms
557 MV                      = mv
558 NROFF                   = nroff
559 PERL                    = @PerlCmd@
560 PIC                     = pic
561 PREPROCESSCMD           = $(CC) -E
562 PRINTER                 = lpr
563 RANLIB                  = @RANLIB@
564 RM                      = rm -f
565 SED                     = @SedCmd@
566 SHELL                   = /bin/sh
567 #
568 # In emergency situations, REAL_SHELL is used to perform shell commands
569 # from within the ghc driver script, by scribbling the command line to
570 # a temp file and then having $(REAL_SHELL) execute it. 
571 #
572 # The reason for having to do this is that overly long command lines
573 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
574 # 2.5.1), which is why this backdoor is provided. The situation of overly
575 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
576 # or when linking the compiler binary (`hsc'). 
577 #
578 # We do not use SHELL to execute long commands, as `make' will more than likely
579 # override whatever setting you have in your environment while executing. 
580
581 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
582 # as it SHELL that will show up the bogosity in the first place, but setting
583 # it to anything else isn't really portable.
584 #
585 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
586 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
587 # command shell.
588 #
589 REAL_SHELL=$(SHELL)
590 SIZE                    = size
591 STRIP                   = strip
592 TAR                     = @TarCmd@
593 #
594 # This is special to literate/, ToDo: add literate-specific
595 # configure setup to literate/.
596 #
597 TBL                     = tbl
598 TEX                     = tex
599 TGRIND                  = tgrind
600 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
601 TIB                     = tib
602
603 TIME                    = @TimeCmd@
604 TROFF                   = troff
605 UNAME                   = uname
606 YACC                    = @YaccCmd@
607
608
609 #-----------------------------------------------------------------------------
610 #               FPtools support software
611
612 # Stuff from fptools/glafp-utils
613 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
614 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
615 LTX                     = $(LTX_PREFIX)ltx
616 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
617 LNDIR                   = $(LNDIR_PREFIX)lndir
618 MSUB                    = $(MSUB_PREFIX)msub
619 ETAGS                   = $(ETAGS_PREFIX)etags
620 VERBATIM                = $(VERBATIM_PREFIX)verbatim
621 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
622 HAPPY                   = @HappyCmd@
623 HAPPY_VERSION           = @HappyVersion@                
624 LX                      = @LxCmd@
625 GREENCARD               = @GreencardCmd@
626
627 ifeq "$(HAPPY)" ""
628 HAPPY                   = $(HAPPY_PREFIX)happy
629 endif
630
631 #
632 # Stuff from fptools/literate
633 #
634 INFO                    = $(UTIL_PREFIX)info
635 MAKEINFO                = $(INFO_PREFIX)makeinfo
636 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
637 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
638 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
639 LIT2HTML                = $(LITERATE_PREFIX)lit2html
640 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
641 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
642 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
643 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
644 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
645
646 #
647 # Stuff from fptools/ghc/utils
648 #
649 UNLIT                   = $(UNLIT_PREFIX)unlit
650 UGEN                    = $(UGEN_PREFIX)ugen
651 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
652 HP2PS                   = $(HP2PS_PREFIX)hp2ps
653 HSCPP                   = $(HSCPP_PREFIX)hscpp
654 HSTAGS                  = $(HSTAGS_PREFIX)hstags
655
656 #
657 # Options for the compiling different `ways'. Various projects within
658 # the glorious fptools tree support building in various user-configured
659 # ways. For instance, you could set up one `way' such that the prelude
660 # libraries and hslibs all were built with the option -ffoldr-build-on.
661
662 # To configure up your own way, have a look at some of the standard ways
663 # such as profiling, and create your own set of WAY_*_OPTS defs below.
664 # After having done that, add your way string to WAYS, and after having
665 # run the configure script, the different projects will add the new way
666 # to the list of ways they support.
667 #
668
669 #
670 # IMPORTANT! The WAYS variable configures the different `ways'
671 # you want to build a project (or maybe just parts of it, as is
672 # the case for ghc/). This variable is intended set inside the
673 # project mk setup, enforcing a global fptools WAYS is a bit too
674 # much (do you *really* want to build glafp-utils the profiled-concurrent 
675 # way?)
676 #
677
678 #
679 # Definitions of the different ways:
680 #   
681 #   * their name:
682 #          - tag, e.g., p
683 #          - description, e.g., profiling
684 #   * what they mean to the driver:
685 #          - WAY_p_HC_OPTS gives the list of command-line options
686 #            to the driver.
687 #
688
689 #
690 # The ways currently defined.
691 #
692 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
693
694 #
695 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
696 # as the driver script treats these guys specially and needs to carefully be told
697 # about the options for these. Hence, we hide the required command line options
698 # for these in the ghc/driver, as this is the only place they are needed.
699
700 # If you want to add to these default options, fill in the variables below:
701
702 WAY_p_NAME=profiling
703 WAY_p_HC_OPTS= -prof
704
705 # Way t:
706 WAY_t_NAME=ticky-ticky profiling
707 WAY_t_HC_OPTS= -ticky
708
709 # Way `u':
710 WAY_u_NAME=unregisterized (using portable C only)
711 WAY_u_HC_OPTS=
712
713 # Way `mc': concurrent
714 WAY_mc_NAME=concurrent
715 WAY_mc_HC_OPTS=-concurrent
716
717 # Way `mr': 
718 WAY_mr_NAME=profiled concurrent
719 WAY_mr_HC_OPTS=-prof -concurrent
720
721 # Way `mt': 
722 WAY_mt_NAME=ticky-ticky concurrent
723 WAY_mt_HC_OPTS=-ticky -concurrent
724
725 # Way `mp': 
726 WAY_mp_NAME=parallel
727 WAY_mp_HC_OPTS=-parallel
728
729 #
730 # Way `mg': 
731 #
732 WAY_mg_NAME=GranSim
733 WAY_mg_HC_OPTS=-gransim
734
735 #
736 # Ways for different garbage collectors
737 #
738 WAY_2s_NAME=2-space GC
739 WAY_2s_HC_OPTS=-2s
740
741 WAY_1s_NAME=1-space GC
742 WAY_1s_HC_OPTS=-1s
743
744 WAY_du_NAME=dual-mode GC
745 WAY_du_HC_OPTS=-du
746
747 #
748 # Add user-way configurations here:
749 #
750 WAY_A_NAME=
751 WAY_A_HC_OPTS=
752
753 WAY_B_NAME=
754 WAY_B_HC_OPTS=
755
756 WAY_a_NAME=
757 WAY_a_HC_OPTS=
758
759 WAY_b_NAME=
760 WAY_b_HC_OPTS=
761
762 WAY_c_NAME=
763 WAY_c_HC_OPTS=
764
765 WAY_d_NAME=
766 WAY_d_HC_OPTS=
767
768 WAY_e_NAME=
769 WAY_e_HC_OPTS=
770
771 WAY_f_NAME=
772 WAY_f_HC_OPTS=
773
774 WAY_g_NAME=
775 WAY_g_HC_OPTS=
776
777 WAY_h_NAME=
778 WAY_h_HC_OPTS=
779
780 WAY_i_NAME=
781 WAY_i_HC_OPTS=
782
783 WAY_j_NAME=
784 WAY_j_HC_OPTS=
785
786 WAY_k_NAME=
787 WAY_k_HC_OPTS=
788
789 WAY_l_NAME=
790 WAY_l_HC_OPTS=
791
792 WAY_m_NAME=
793 WAY_m_HC_OPTS=
794
795 WAY_n_NAME=
796 WAY_n_HC_OPTS=
797
798 WAY_o_NAME=
799 WAY_o_HC_OPTS=