[project @ 1997-09-03 23:18:41 by sof]
[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 ghc hslibs
113 #
114 # Make a distinction between building and installing, ProjectsToInstall
115 # does not include the literate bits..
116 #
117 ProjectsToInstall = glafp-utils 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.06
139 GhcProjectPatchLevel =0
140 GhcBuildeeVersion    =206
141 GhcBuilderVersion    =29
142
143 #
144 # Name variables for the fptools, for now equal to the above
145 # ghc stuff
146 #
147 ProjectName       =$(GhcProjectName)
148 ProjectNameShort  =$(GhcProjectNameShort)
149 ProjectVersion    =$(GhcProjectVersion)
150 ProjectPatchLevel =$(GhcProjectPatchLevel)
151
152
153 #---------------------------------------------------------------
154 #
155 # Variables that control how the compiler itself is built
156
157 # Specify the Haskell compiler to be used to compile the compiler itself
158 #   WithGhcHc   Path name of the compiler to use
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 #   WithGhcHcType       What "type" of compiler is being used
163 #                       Valid options:
164 #                            HC_CHALMERS_HBC
165 #                            HC_GLASGOW_GHC
166 #                            HC_ROJEMO_NHC
167 #                            HC_UNSPECIFIED
168 WithGhcHc = ghc-0.29
169 Ghc2_0=NO
170 # Unused, we think
171 # WithGhcHcType=HC_GLASGOW_GHC
172
173 # Extra ways in which to build the compiler (for example, you might want to
174 # build a profiled compiler so you can see where it spends its time)
175 GhcCompilerWays=
176
177 # Extra option flags to pass to the compiler that compiles the compiler
178 # (Ones that are essential are wired into ghc/compiler/Makefile)
179 # Typical ones:
180 #       -H25m           allocate a bigger heap (default is 6m)
181 #
182 #       -O              compile an optimised compiler
183 #                       NB! If you add -O you'll almost certainly need to increase
184 #                       the amount of heap space too (to 15m or more)
185 #
186 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
187 #
188 #       -dcore-lint     check the types after every pass of the compiler;
189 #                       a pretty strong internal check
190 GhcHcOpts=
191
192 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
193 GhcWithHscBuiltViaC=NO
194
195 # Build hsc with -O and turn optimising flag on when compiling
196 # the intermediate C file
197 GhcUseGccForOptAsm=YES
198
199 # Compile intermediate C file with debugging options set.
200 GhcUseGccForDebuggingAsm=YES
201
202 # Build a registerised version of hsc and runtime
203 # (you'd be desperate or silly not to).
204 GhcWithRegisterised=YES
205
206 # Build a compiler with a native code generator backend
207 # (as well as a C backend)
208 #
209 # Target platforms supported:
210 #   i386, alpha & sparc
211 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
212
213 # Build the compiler with the deforester included?
214 GhcWithDeforester=NO
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 # HappyHcOpts gives the flags to pass to the Haskell compiler used
285 #             to compile the Happy source coed
286 HappyHcOpts = 
287
288
289 #################################################################################
290 #
291 #               haggis project
292 #
293 #       Haggis specific options
294 #
295 #################################################################################
296
297
298
299 #################################################################################
300 #
301 #               green-card project
302 #
303 #       Green-card specific options
304 #
305 #################################################################################
306
307
308 #################################################################################
309 #
310 #               nofib project
311 #
312 #       nofib specific options
313 #
314 #################################################################################
315
316
317 # NoFibSubDirs controls which set of tests should be run
318 # You can run one or more of
319 #       imaginary 
320 #       spectral
321 #       real
322 #       parallel
323 #       PRIVATE
324 #       GHC_ONLY
325 #       PENDING
326 #       UNUSED
327 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
328
329 # The different ways to build nofib. Default is just to mirror
330 # what is done for the ghc prelude libraries.
331 #
332 NoFibWays=$(GhcLibWays)
333
334 # Haskell compiler options for nofib
335 NoFibHcOpts=
336
337 # ==============================================================================
338 #
339 #                       END OF PROJECT-SPECIFIC STUFF
340 #
341 #               Now come the generic configuration options
342 #
343 # ==============================================================================
344
345 #################################################################################
346 #
347 #               Paths (see paths.mk)
348 #
349 #################################################################################
350
351 TMPDIR                  = /tmp
352
353 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
354
355 FPTOOLS_TOP_ABS         = @hardtop@
356
357 #
358 # Installation directories, we don't use half of these,
359 # but since the configure script has them on offer while
360 # passing through, we might as well set them.
361
362 prefix                  = @prefix@
363 exec_prefix             = @exec_prefix@
364 bindir                  = @bindir@
365 #UNUSED, see below: libexecdir              = @libexecdir@
366 datadir                 = @datadir@
367 #sysconfdir              = @datadir@
368 #sharedstatedir          = @sharedstatedir@
369 #localstatedir           = @localstatedir@
370 libdir                  = @libdir@
371 infodir                 = @infodir@
372 includedir              = @includedir@
373 oldincludedir           = @oldincludedir@
374 mandir                  = @mandir@
375 #UNUSED:srcdir          = @srcdir@
376
377
378 # Default values for most of the above are only set if
379 # they weren't configured to anything in particular
380 # via the configure script. (i.e., we make no assumption
381 # that the autoconf-generated script will assign defaults
382 # to all of the above).
383 #
384 ifeq "$(strip $(exec_prefix))" ""
385 exec_prefix             = $(prefix)
386 endif
387 ifeq "$(strip $(bindir))" ""
388 bindir                  = $(exec_prefix)/bin
389 endif
390
391 #
392 # NOTE: by intention, libexecdir and libdir point to 
393 # the same place.
394 #  => Only way to override this is to set libexecdir= on the command line.
395 #     (NOTE: configure script setting is ignored).
396 libexecdir              = $(libdir)
397
398 ifeq "$(strip $(datadir))" ""
399 datadir         = $(prefix)/share
400 endif
401 ifeq "$(strip $(libdir))" ""
402 libdir          = $(exec_prefix)/lib
403 endif
404 ifeq "$(strip $(infodir))" ""
405 infodir         = $(prefix)/info
406 endif
407 ifeq "$(strip $(includedir))" ""
408 includedir      = $(prefix)/include
409 endif
410 ifeq "$(strip $(oldincludedir))" ""
411 oldincludedir   = /usr/include
412 endif
413 ifeq "$(strip $(mandir))" ""
414 mandir          = $(prefix)/man
415 endif
416  
417
418 #################################################################################
419 #
420 #               Utilities programs: flags
421 #
422 #################################################################################
423
424 # If you want to give any standard flags to pretty much any utility
425 # (see utils.mk for a complete list), by adding a line here
426 #
427 #       SRC_P_OPTS += ...
428 #
429 # where P is the utility. For example, to add -O to all Haskell
430 # compilations, 
431 #
432 #       SRC_HC_OPTS += -O
433
434
435 #################################################################################
436 #
437 #               Utilities programs: where to find them
438 #
439 #################################################################################
440
441 #-----------------------------------------------------------------------------
442 # FPtools Utility locations
443
444 # By default, the various utils needed to be build ghc and chums
445 # is set up to point to the utils/ directory. Define here the
446 # path prefix for the utilities. Notice that it's a prefix with
447 # a trailing slash, so that it can be concatenated directly on
448 # front of a program name; if it's not set then we just look
449 # along the shell's $(PATH)
450 #
451 # If instead you want to use installed or your own versions of these,
452 # override the various *_PREFIX in build.mk, i.e., having the following
453 # in build.mk:
454 #
455 #   FASTMAKE_PREFIX=
456 #
457 # will force `make' to rummage around in your PATH to find `fastmake' (not
458 # sure it would need it in the first place, but still).
459 #
460 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
461
462 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
463 FASTMAKE_PREFIX         = $(GLAFP_UTILS)/fastmake/
464 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
465 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
466 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
467 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
468 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
469 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
470 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
471 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
472
473 # Still used?
474 LITERATE                = $(FPTOOLS_TOP)/literate
475
476 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
477 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
478 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
479
480 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
481 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
482
483 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
484 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
485 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
486 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
487 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
488 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
489
490
491 #-----------------------------------------------------------------------------
492 # Haskell compiler and mkdependHS
493
494 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
495 MKDEPENDHS      = $(HC)
496
497 #
498 # The compiler proper is built with the 1.2 compiler,
499 # so when building the dependencies, we need mkdependHS
500 # for the 1.2 compiler.
501 #
502 MKDEPENDHS_1_2  = mkdependHS-1.2
503
504 #-----------------------------------------------------------------------------
505 # C compiler
506 #
507 #
508 HaveGcc         = @HaveGcc@
509 UseGcc          = YES
510 WhatGccIsCalled = gcc
511 ifeq "$(strip $(HaveGcc))" "YES"
512 ifneq "$(strip $(UseGcc))"  "YES"
513   CC    = cc
514 else
515   CC    = $(WhatGccIsCalled)
516 endif
517 endif
518
519 #-----------------------------------------------------------------------------
520 # Flex
521
522 FLEX                    = @LEX@
523 FLEX_LIB                = @LEXLIB@
524
525 #-----------------------------------------------------------------------------
526 # Other standard (ha!) Unix utilities
527
528 AR                      = @ArCmd@
529 # Yuckage: for ghc/utils/parallel -- todo: nuke this dependency!!
530 BASH                    = /usr/local/bin/bash
531 #
532 # Could be either gzip or compress
533 #
534 COMPRESS                = @CompressCmd@
535 COMPRESS_SUFFIX         = @CompressSuffix@
536
537 CONTEXT_DIFF            = @ContextDiffCmd@
538 CP                      = cp
539 CPP                     = @RAWCPP@
540 CTAGS                   = $(ETAGS)
541 RAWCPP                  = @RAWCPP@
542 GNUCPP                  = @GNUCPP@
543 INSTALL                 = @INSTALL@
544 #
545 # Sigh - the autoconf macro for INSTALL will subst a relative path to the fallback
546 # install-sh script (if chosen). This not terribly useful to us, so we convert
547 # it into an abs. path.
548
549 INSTALL                 := $(subst .././install-sh,$(FPTOOLS_TOP_ABS)/install-sh,$(INSTALL))
550 LATEX                   = latex
551 LN_S                    = @LN_S@
552 MANMACROS               = -man
553 MSMACROS                = -ms
554 MV                      = mv
555 NROFF                   = nroff
556 PERL                    = @PerlCmd@
557 PIC                     = pic
558 PREPROCESSCMD           = $(CC) -E
559 PRINTER                 = lpr
560 RANLIB                  = @RANLIB@
561 RM                      = rm -f
562 SED                     = @SedCmd@
563 SHELL                   = /bin/sh
564 #
565 # In emergency situations, REAL_SHELL is used to perform shell commands
566 # from within the ghc driver script, by scribbling the command line to
567 # a temp file and then having $(REAL_SHELL) execute it. 
568 #
569 # The reason for having to do this is that overly long command lines
570 # cause unnecessary trouble with some shells (e.g., /bin/sh on Solaris
571 # 2.5.1), which is why this backdoor is provided. The situation of overly
572 # long command lines is either encountered while doing `make boot' in ghc/compiler, 
573 # or when linking the compiler binary (`hsc'). 
574 #
575 # We do not use SHELL to execute long commands, as `make' will more than likely
576 # override whatever setting you have in your environment while executing. 
577
578 # By default, REAL_SHELL is set equal SHELL, which is not really a smart move
579 # as it SHELL that will show up the bogosity in the first place, but setting
580 # it to anything else isn't really portable.
581 #
582 #  ====> If long command lines cause you trouble, invoke `ghc' (via `make' or otherwise)
583 # with REAL_SHELL set to something else than /bin/sh, for instance, your favourite
584 # command shell.
585 #
586 REAL_SHELL=$(SHELL)
587 SIZE                    = size
588 STRIP                   = strip
589 TAR                     = @TarCmd@
590 #
591 # This is special to literate/, ToDo: add literate-specific
592 # configure setup to literate/.
593 #
594 TBL                     = tbl
595 TEX                     = tex
596 TGRIND                  = tgrind
597 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
598 TIB                     = tib
599
600 TIME                    = @TimeCmd@
601 TROFF                   = troff
602 UNAME                   = uname
603 YACC                    = @YaccCmd@
604
605
606 #-----------------------------------------------------------------------------
607 #               FPtools support software
608
609 # Stuff from fptools/glafp-utils
610 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
611 FASTMAKE                = $(FASTMAKE_PREFIX)fastmake
612 LTX                     = $(LTX_PREFIX)ltx
613 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
614 LNDIR                   = $(LNDIR_PREFIX)lndir
615 MSUB                    = $(MSUB_PREFIX)msub
616 ETAGS                   = $(ETAGS_PREFIX)etags
617 VERBATIM                = $(VERBATIM_PREFIX)verbatim
618 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
619 HAPPY                   = @HappyCmd@
620 HAPPY_VERSION           = @HappyVersion@                
621 LX                      = @LxCmd@
622 GREENCARD               = @GreencardCmd@
623
624 ifeq "$(HAPPY)" ""
625 HAPPY                   = $(HAPPY_PREFIX)happy
626 endif
627
628 #
629 # Stuff from fptools/literate
630 #
631 INFO                    = $(UTIL_PREFIX)info
632 MAKEINFO                = $(INFO_PREFIX)makeinfo
633 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
634 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
635 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
636 LIT2HTML                = $(LITERATE_PREFIX)lit2html
637 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
638 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
639 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
640 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
641 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
642
643 #
644 # Stuff from fptools/ghc/utils
645 #
646 UNLIT                   = $(UNLIT_PREFIX)unlit
647 UGEN                    = $(UGEN_PREFIX)ugen
648 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
649 HP2PS                   = $(HP2PS_PREFIX)hp2ps
650 HSCPP                   = $(HSCPP_PREFIX)hscpp
651 HSTAGS                  = $(HSTAGS_PREFIX)hstags
652
653 #
654 # Options for the compiling different `ways'. Various projects within
655 # the glorious fptools tree support building in various user-configured
656 # ways. For instance, you could set up one `way' such that the prelude
657 # libraries and hslibs all were built with the option -ffoldr-build-on.
658
659 # To configure up your own way, have a look at some of the standard ways
660 # such as profiling, and create your own set of WAY_*_OPTS defs below.
661 # After having done that, add your way string to WAYS, and after having
662 # run the configure script, the different projects will add the new way
663 # to the list of ways they support.
664 #
665
666 #
667 # IMPORTANT! The WAYS variable configures the different `ways'
668 # you want to build a project (or maybe just parts of it, as is
669 # the case for ghc/). This variable is intended set inside the
670 # project mk setup, enforcing a global fptools WAYS is a bit too
671 # much (do you *really* want to build glafp-utils the profiled-concurrent 
672 # way?)
673 #
674
675 #
676 # Definitions of the different ways:
677 #   
678 #   * their name:
679 #          - tag, e.g., p
680 #          - description, e.g., profiling
681 #   * what they mean to the driver:
682 #          - WAY_p_HC_OPTS gives the list of command-line options
683 #            to the driver.
684 #
685
686 #
687 # The ways currently defined.
688 #
689 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
690
691 #
692 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
693 # as the driver script treats these guys specially and needs to carefully be told
694 # about the options for these. Hence, we hide the required command line options
695 # for these in the ghc/driver, as this is the only place they are needed.
696
697 # If you want to add to these default options, fill in the variables below:
698
699 WAY_p_NAME=profiling
700 WAY_p_HC_OPTS= -prof
701
702 # Way t:
703 WAY_t_NAME=ticky-ticky profiling
704 WAY_t_HC_OPTS= -ticky
705
706 # Way `u':
707 WAY_u_NAME=unregisterized (using portable C only)
708 WAY_u_HC_OPTS=
709
710 # Way `mc': concurrent
711 WAY_mc_NAME=concurrent
712 WAY_mc_HC_OPTS=-concurrent
713
714 # Way `mr': 
715 WAY_mr_NAME=profiled concurrent
716 WAY_mr_HC_OPTS=-prof -concurrent
717
718 # Way `mt': 
719 WAY_mt_NAME=ticky-ticky concurrent
720 WAY_mt_HC_OPTS=-ticky -concurrent
721
722 # Way `mp': 
723 WAY_mp_NAME=parallel
724 WAY_mp_HC_OPTS=-parallel
725
726 #
727 # Way `mg': 
728 #
729 WAY_mg_NAME=GranSim
730 WAY_mg_HC_OPTS=-gransim
731
732 #
733 # Ways for different garbage collectors
734 #
735 WAY_2s_NAME=2-space GC
736 WAY_2s_HC_OPTS=-2s
737
738 WAY_1s_NAME=1-space GC
739 WAY_1s_HC_OPTS=-1s
740
741 WAY_du_NAME=dual-mode GC
742 WAY_du_HC_OPTS=-du
743
744 #
745 # Add user-way configurations here:
746 #
747 WAY_A_NAME=
748 WAY_A_HC_OPTS=
749
750 WAY_B_NAME=
751 WAY_B_HC_OPTS=
752
753 WAY_a_NAME=
754 WAY_a_HC_OPTS=
755
756 WAY_b_NAME=
757 WAY_b_HC_OPTS=
758
759 WAY_c_NAME=
760 WAY_c_HC_OPTS=
761
762 WAY_d_NAME=
763 WAY_d_HC_OPTS=
764
765 WAY_e_NAME=
766 WAY_e_HC_OPTS=
767
768 WAY_f_NAME=
769 WAY_f_HC_OPTS=
770
771 WAY_g_NAME=
772 WAY_g_HC_OPTS=
773
774 WAY_h_NAME=
775 WAY_h_HC_OPTS=
776
777 WAY_i_NAME=
778 WAY_i_HC_OPTS=
779
780 WAY_j_NAME=
781 WAY_j_HC_OPTS=
782
783 WAY_k_NAME=
784 WAY_k_HC_OPTS=
785
786 WAY_l_NAME=
787 WAY_l_HC_OPTS=
788
789 WAY_m_NAME=
790 WAY_m_HC_OPTS=
791
792 WAY_n_NAME=
793 WAY_n_HC_OPTS=
794
795 WAY_o_NAME=
796 WAY_o_HC_OPTS=