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