[project @ 1998-02-03 11:47:43 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 # 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 # Name variables for the main project
126 #
127 Project           = Ghc
128 ProjectName       = $($(Project)ProjectName)
129 ProjectNameShort  = $($(Project)ProjectNameShort)
130 ProjectVersion    = $($(Project)ProjectVersion)
131 ProjectPatchLevel = $($(Project)ProjectPatchLevel)
132
133 #################################################################################
134 #
135 #               GHC project
136
137 #       Set of (configurable) options needed by the ghc tree
138 #       plus their default options (if any).
139 #
140 #################################################################################
141
142 #
143 # Name variables for ghc:
144
145 GhcProjectName         = The Glorious Glasgow Haskell Compilation System
146 GhcProjectNameShort    = ghc
147 GhcProjectVersion      = 3.01
148 GhcProjectPatchLevel   = 0
149
150 #---------------------------------------------------------------
151 #
152 # Variables that control how the compiler itself is built
153
154 # Specify the Haskell compiler to be used to compile the compiler itself
155 #
156 #   WithGhcHc      Path name of the compiler to use
157 #
158 #   WithGhcHcType  What "type" of compiler is being used
159 #                  Valid options:
160 #                            HC_CHALMERS_HBC
161 #                            HC_GLASGOW_GHC
162 #                            HC_ROJEMO_NHC
163 #                            HC_UNSPECIFIED
164
165 WithGhcHc = ghc-2.10
166
167 # Unused, we think
168 # WithGhcHcType=HC_GLASGOW_GHC
169
170 # Extra ways in which to build the compiler (for example, you might want to
171 # build a profiled compiler so you can see where it spends its time)
172 GhcCompilerWays=
173
174 # Extra option flags to pass to the compiler that compiles the compiler
175 # (Ones that are essential are wired into ghc/compiler/Makefile)
176 # Typical ones:
177 #       -H25m           allocate a bigger heap (default is 6m)
178 #
179 #       -O              compile an optimised compiler
180 #                       NB! If you add -O you'll almost certainly need to increase
181 #                       the amount of heap space too (to 15m or more)
182 #
183 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
184 #
185 #       -dcore-lint     check the types after every pass of the compiler;
186 #                       a pretty strong internal check
187 GhcHcOpts=
188
189 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
190 GhcWithHscBuiltViaC=NO
191
192 # Build hsc with -O and turn optimising flag on when compiling
193 # the intermediate C file
194 GhcUseGccForOptAsm=YES
195
196 # Compile intermediate C file with debugging options set.
197 GhcUseGccForDebuggingAsm=YES
198
199 # Build a registerised version of hsc and runtime
200 # (you'd be desperate or silly not to).
201 GhcWithRegisterised=YES
202
203 # Build a compiler with a native code generator backend
204 # (as well as a C backend)
205 #
206 # Target platforms supported:
207 #   i386, alpha & sparc
208 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
209
210 #
211 # Building various ways?
212 # (right now, empty if not).
213 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
214 BuildingConcurrent=$(subst mc,YES,$(filter mc,$(WAYS)))
215 BuildingProfiling=$(subst p,YES,$(filter p,$(WAYS)))
216 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
217 BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS)))
218
219 #---------------------------------------------------------------
220 #
221 # Variables that control how the prelude libraries and runtime system are built
222
223 # What extra ways to build the libraries in
224 # In addition to the normal sequential way, the default is to also build
225 # profiled prelude libraries.
226 GhcLibWays=p
227
228 # Option flags to pass to GHC when it's compiling prelude modules
229 # Typically these are things like -O or -dcore-lint
230 # The ones that are *essential* are wired into ghc/lib/Makefile
231 #
232 #       -O is pretty desirable, otherwise no inlining of prelude
233 #               things (incl "+") happens when compiling with this compiler
234
235 #
236 # Splitting profiled code produces awfully large archives under ELF, so
237 # we turn it off here.
238 #
239 # ToDo: track down the source of this.
240 #
241 ifeq "$(strip $(way))" "p"
242 GhcLibHcOpts= -O
243 else 
244 ifeq "$(strip $(way))" "mr"
245 GhcLibHcOpts= -O
246 else
247 GhcLibHcOpts= -O -split-objs -odir $*
248 endif
249 endif
250
251 # Build the Haskell Readline bindings?
252 #
253 GhcLibsWithReadline=NO
254 #
255 # Include path to readline.h
256 # (no path == in standard include path)
257 #
258 ReadlineIncludePath=
259
260 # Build the socket libraries?  (ToDo: is this used?)
261 #
262 GhcLibsWithSockets=YES
263
264 # what to include in a binary distribution
265
266 GhcMainDir = ghc
267 GhcBinDistDirs = ghc
268 GhcBinDistDocs = docs ghc/docs/users_guide ghc/docs/libraries
269 GhcBinDistPrlScripts = ghc-$(GhcProjectVersion) stat2resid hstags mkdependHS
270 GhcBinDistLibPrlScripts = hscpp
271 GhcBinDistBins = hp2ps
272
273 #################################################################################
274 #
275 #               happy project
276 #
277 #       Happy specific options
278 #
279 #################################################################################
280
281 #
282 # Name variables for happy:
283 #
284 HappyProjectName       = Happy
285 HappyProjectNameShort  = happy
286 HappyProjectVersion    = 1.5
287 HappyProjectPatchLevel = 0
288
289 # The compiler you'd like to use to compile Happy
290 WithHappyHc = $(WithGhcHc)
291
292 # HappyHcOpts gives the flags to pass to the Haskell compiler used
293 #             to compile the Happy sources with.
294 #
295 HappyHcOpts = 
296
297 # what to include in a binary distribution
298
299 HappyMainDir = happy
300 HappyBinDistDirs = happy
301 HappyBinDistDocs = happy/doc
302 HappyBinDistShScripts = happy
303
304 #################################################################################
305 #
306 #               haggis project
307 #
308 #       Haggis specific options
309 #
310 #################################################################################
311
312 #################################################################################
313 #
314 #               green-card project
315 #
316 #       Green-card specific options
317 #
318 #################################################################################
319
320
321 #################################################################################
322 #
323 #               nofib project
324 #
325 #       nofib specific options
326 #
327 #################################################################################
328
329
330 # NoFibSubDirs controls which set of tests should be run
331 # You can run one or more of
332 #       imaginary 
333 #       spectral
334 #       real
335 #       parallel
336 #       PRIVATE
337 #       GHC_ONLY
338 #       PENDING
339 #       UNUSED
340 NoFibSubDirs = imaginary spectral real GHC_ONLY PRIVATE
341
342 # The different ways to build nofib. Default is just to mirror
343 # what is done for the ghc prelude libraries.
344 #
345 NoFibWays=$(GhcLibWays)
346
347 # Haskell compiler options for nofib
348 NoFibHcOpts=
349
350 # ==============================================================================
351 #
352 #                       END OF PROJECT-SPECIFIC STUFF
353 #
354 #               Now come the generic configuration options
355 #
356 # ==============================================================================
357
358 #################################################################################
359 #
360 #               Paths (see paths.mk)
361 #
362 #################################################################################
363
364 TMPDIR                  = /tmp
365
366 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
367
368 FPTOOLS_TOP_ABS         = @hardtop@
369
370 #
371 # Installation directories, we don't use half of these,
372 # but since the configure script has them on offer while
373 # passing through, we might as well set them.
374
375 prefix                  = @prefix@
376 exec_prefix             = @exec_prefix@
377 bindir                  = @bindir@
378 #UNUSED, see below: libexecdir              = @libexecdir@
379 datadir                 = @datadir@
380 #sysconfdir              = @datadir@
381 #sharedstatedir          = @sharedstatedir@
382 #localstatedir           = @localstatedir@
383 libdir                  = @libdir@
384 infodir                 = @infodir@
385 includedir              = @includedir@
386 oldincludedir           = @oldincludedir@
387 mandir                  = @mandir@
388 #UNUSED:srcdir          = @srcdir@
389
390
391 # Default values for most of the above are only set if
392 # they weren't configured to anything in particular
393 # via the configure script. (i.e., we make no assumption
394 # that the autoconf-generated script will assign defaults
395 # to all of the above).
396 #
397 ifeq "$(strip $(exec_prefix))" ""
398 exec_prefix             = $(prefix)
399 endif
400 ifeq "$(strip $(bindir))" ""
401 bindir                  = $(exec_prefix)/bin
402 endif
403
404 #
405 # NOTE: by intention, libexecdir and libdir point to 
406 # the same place.
407 #  => Only way to override this is to set libexecdir= on the command line.
408 #     (NOTE: configure script setting is ignored).
409 libexecdir              = $(libdir)
410
411 ifeq "$(strip $(datadir))" ""
412 datadir         = $(prefix)/share
413 endif
414 ifeq "$(strip $(libdir))" ""
415 libdir          = $(exec_prefix)/lib
416 endif
417 ifeq "$(strip $(infodir))" ""
418 infodir         = $(prefix)/info
419 endif
420 ifeq "$(strip $(includedir))" ""
421 includedir      = $(prefix)/include
422 endif
423 ifeq "$(strip $(oldincludedir))" ""
424 oldincludedir   = /usr/include
425 endif
426 ifeq "$(strip $(mandir))" ""
427 mandir          = $(prefix)/man
428 endif
429  
430
431 #################################################################################
432 #
433 #               Utilities programs: flags
434 #
435 #################################################################################
436
437 # If you want to give any standard flags to pretty much any utility
438 # (see utils.mk for a complete list), by adding a line here
439 #
440 #       SRC_P_OPTS += ...
441 #
442 # where P is the utility. For example, to add -O to all Haskell
443 # compilations, 
444 #
445 #       SRC_HC_OPTS += -O
446
447
448 #################################################################################
449 #
450 #               Utilities programs: where to find them
451 #
452 #################################################################################
453
454 #-----------------------------------------------------------------------------
455 # FPtools Utility locations
456
457 # By default, the various utils needed to be build ghc and chums
458 # is set up to point to the utils/ directory. Define here the
459 # path prefix for the utilities. Notice that it's a prefix with
460 # a trailing slash, so that it can be concatenated directly on
461 # front of a program name; if it's not set then we just look
462 # along the shell's $(PATH)
463 #
464 # If instead you want to use installed or your own versions of these,
465 # override the various *_PREFIX in build.mk, i.e., having the following
466 # in build.mk:
467 #
468 #   MKDEPENDC_PREFIX=
469 #
470 # will force `make' to rummage around in your PATH to find `mkdependC' (not
471 # sure it would need it in the first place, but still).
472 #
473 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
474
475 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
476 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
477 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
478 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
479 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
480 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
481 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
482 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
483 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
484 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
485
486 # Still used?
487 LITERATE                = $(FPTOOLS_TOP)/literate
488
489 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
490 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
491 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
492
493 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
494 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
495
496 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
497 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
498 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
499 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
500 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
501 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
502
503
504 #-----------------------------------------------------------------------------
505 # Haskell compiler and mkdependHS
506
507 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
508 MKDEPENDHS      = $(HC)
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 #
598 # Under cygwin32, we have to deal with .exe suffixes
599 #
600 EXE_SUFFIX=@ExeSuffix@
601
602 #
603 # This is special to literate/, ToDo: add literate-specific
604 # configure setup to literate/.
605 #
606 TBL                     = tbl
607 TEX                     = tex
608 TGRIND                  = tgrind
609 TGRIND_HELPER           = /usr/local/lib/tgrind/tfontedpr # XXX
610 TIB                     = tib
611
612 TIME                    = @TimeCmd@
613 TROFF                   = troff
614 UNAME                   = uname
615 YACC                    = @YaccCmd@
616
617 #-----------------------------------------------------------------------------
618 # SGML stuff (currently not configured - we assume you have it)
619
620 SGML2LATEX              = sgml2latex
621 SGML2HTML               = sgml2html
622 SGML2INFO               = sgml2info
623 SGML2TXT                = sgml2txt
624
625 #-----------------------------------------------------------------------------
626 #               FPtools support software
627
628 # Stuff from fptools/glafp-utils
629 MKDEPENDC               = $(MKDEPENDC_PREFIX)mkdependC
630 LTX                     = $(LTX_PREFIX)ltx
631 MKDIRHIER               = $(MKDIRHIER_PREFIX)mkdirhier
632 LNDIR                   = $(LNDIR_PREFIX)lndir
633 MSUB                    = $(MSUB_PREFIX)msub
634 ETAGS                   = $(ETAGS_PREFIX)etags
635 VERBATIM                = $(VERBATIM_PREFIX)verbatim
636 SGMLVERB                = $(SGMLVERB_PREFIX)sgmlverb
637 SGML2LATEX              = sgml2latex
638 RUNTEST                 = $(RUNTEST_PREFIX)runstdtest
639 HAPPY                   = @HappyCmd@
640 HAPPY_VERSION           = @HappyVersion@                
641 LX                      = @LxCmd@
642 GREENCARD               = @GreencardCmd@
643
644 #
645 # Stuff from fptools/literate
646 #
647 INFO                    = $(UTIL_PREFIX)info
648 MAKEINFO                = $(INFO_PREFIX)makeinfo
649 POSTMAKEINFO            = $(INFO_PREFIX)postmakeinfo
650 LIT2PGM                 = $(LITERATE_PREFIX)lit2pgm
651 LIT2TEXI                = $(LITERATE_PREFIX)lit2texi
652 LIT2HTML                = $(LITERATE_PREFIX)lit2html
653 LIT2LATEX               = $(LITERATE_PREFIX)lit2latex
654 MKDEPENDLIT             = $(LITERATE_PREFIX)mkdependlit
655 LIT2CHANGELOG           = $(LITERATE_PREFIX)lit2changelog
656 LIT2TEXT                = $(LITERATE_PREFIX)lit2text
657 TEXI2HTML               = $(TEXI2HTML_PREFIX)texi2html
658
659 #
660 # Stuff from fptools/ghc/utils
661 #
662 UNLIT                   = $(UNLIT_PREFIX)unlit
663 UGEN                    = $(UGEN_PREFIX)ugen
664 STAT2RESID              = $(STAT2RESID_PREFIX)stat2resid
665 HP2PS                   = $(HP2PS_PREFIX)hp2ps
666 HSCPP                   = $(HSCPP_PREFIX)hscpp
667 HSTAGS                  = $(HSTAGS_PREFIX)hstags
668
669 #
670 # Options for the compiling different `ways'. Various projects within
671 # the glorious fptools tree support building in various user-configured
672 # ways. For instance, you could set up one `way' such that the prelude
673 # libraries all were built with the option -ffoldr-build-on.
674
675 # To configure up your own way, have a look at some of the standard ways
676 # such as profiling, and create your own set of WAY_*_OPTS defs below.
677 # After having done that, add your way string to WAYS, and after having
678 # run the configure script, the different projects will add the new way
679 # to the list of ways they support.
680 #
681
682 #
683 # IMPORTANT! The WAYS variable configures the different `ways'
684 # you want to build a project (or maybe just parts of it, as is
685 # the case for ghc/). This variable is intended set inside the
686 # project mk setup, enforcing a global fptools WAYS is a bit too
687 # much (do you *really* want to build glafp-utils the profiled-concurrent 
688 # way?)
689 #
690
691 #
692 # Definitions of the different ways:
693 #   
694 #   * their name:
695 #          - tag, e.g., p
696 #          - description, e.g., profiling
697 #   * what they mean to the driver:
698 #          - WAY_p_HC_OPTS gives the list of command-line options
699 #            to the driver.
700 #
701
702 #
703 # The ways currently defined.
704 #
705 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
706
707 #
708 # The following ways currently have treated specially, p u t mc mt my mp mg 1s 2d du,
709 # as the driver script treats these guys specially and needs to carefully be told
710 # about the options for these. Hence, we hide the required command line options
711 # for these in the ghc/driver, as this is the only place they are needed.
712
713 # If you want to add to these default options, fill in the variables below:
714
715 WAY_p_NAME=profiling
716 WAY_p_HC_OPTS= -prof
717
718 # Way t:
719 WAY_t_NAME=ticky-ticky profiling
720 WAY_t_HC_OPTS= -ticky
721
722 # Way `u':
723 WAY_u_NAME=unregisterized (using portable C only)
724 WAY_u_HC_OPTS=
725
726 # Way `mc': concurrent
727 WAY_mc_NAME=concurrent
728 WAY_mc_HC_OPTS=-concurrent
729
730 # Way `mr': 
731 WAY_mr_NAME=profiled concurrent
732 WAY_mr_HC_OPTS=-prof -concurrent
733
734 # Way `mt': 
735 WAY_mt_NAME=ticky-ticky concurrent
736 WAY_mt_HC_OPTS=-ticky -concurrent
737
738 # Way `mp': 
739 WAY_mp_NAME=parallel
740 WAY_mp_HC_OPTS=-parallel
741
742 #
743 # Way `mg': 
744 #
745 WAY_mg_NAME=GranSim
746 WAY_mg_HC_OPTS=-gransim
747
748 #
749 # Ways for different garbage collectors
750 #
751 WAY_2s_NAME=2-space GC
752 WAY_2s_HC_OPTS=-2s
753
754 WAY_1s_NAME=1-space GC
755 WAY_1s_HC_OPTS=-1s
756
757 WAY_du_NAME=dual-mode GC
758 WAY_du_HC_OPTS=-du
759
760 #
761 # Add user-way configurations here:
762 #
763 WAY_A_NAME=
764 WAY_A_HC_OPTS=
765
766 WAY_B_NAME=
767 WAY_B_HC_OPTS=
768
769 WAY_a_NAME=
770 WAY_a_HC_OPTS=
771
772 WAY_b_NAME=
773 WAY_b_HC_OPTS=
774
775 WAY_c_NAME=
776 WAY_c_HC_OPTS=
777
778 WAY_d_NAME=
779 WAY_d_HC_OPTS=
780
781 WAY_e_NAME=
782 WAY_e_HC_OPTS=
783
784 WAY_f_NAME=
785 WAY_f_HC_OPTS=
786
787 WAY_g_NAME=
788 WAY_g_HC_OPTS=
789
790 WAY_h_NAME=
791 WAY_h_HC_OPTS=
792
793 WAY_i_NAME=
794 WAY_i_HC_OPTS=
795
796 WAY_j_NAME=
797 WAY_j_HC_OPTS=
798
799 WAY_k_NAME=
800 WAY_k_HC_OPTS=
801
802 WAY_l_NAME=
803 WAY_l_HC_OPTS=
804
805 WAY_m_NAME=
806 WAY_m_HC_OPTS=
807
808 WAY_n_NAME=
809 WAY_n_HC_OPTS=
810
811 WAY_o_NAME=
812 WAY_o_HC_OPTS=