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