[project @ 1999-07-26 18:37:26 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
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 # 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 (default is 6m)
164 #
165 #       -O              compile an optimised compiler
166 #                       NB! If you add -O you'll almost certainly need to increase
167 #                       the amount of heap space too (to 15m or more)
168 #
169 #       -DDEBUG         include consistency/assertion checks in the compiled compiler
170 #
171 #       -dcore-lint     check the types after every pass of the compiler;
172 #                       a pretty strong internal check
173 GhcHcOpts=
174
175 # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files?
176 GhcWithHscBuiltViaC=@BootingFromHc@
177
178 # Build a registerised version of hsc and runtime
179 # (unregisterised used for Hugs at the moment)
180 GhcWithRegisterised=YES
181
182 # Build a compiler with a native code generator backend
183 # (as well as a C backend)
184 #
185 # Target platforms supported:
186 #   i386, alpha & sparc
187 GhcWithNativeCodeGen=$(shell if (test x$(findstring $(HostArch_CPP),i386 alpha sparc) = x); then echo NO; else echo YES; fi)
188
189 #
190 # Building various ways?
191 # (right now, empty if not).
192 BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS)))
193 BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS)))
194
195 #---------------------------------------------------------------
196 #
197 # Variables that control how the prelude libraries and runtime system are built
198
199 # What extra ways to build the libraries in
200 # In addition to the normal sequential way, the default is to also build
201 # profiled prelude libraries.
202 # When booting from .hc files, turn this off.
203 ifeq "$(GhcWithHscBuiltViaC)" "YES"
204 GhcLibWays=
205 else
206 GhcLibWays=p
207 endif
208
209 # Option flags to pass to GHC when it's compiling prelude modules
210 # Typically these are things like -O or -dcore-lint
211 # The ones that are *essential* are wired into ghc/lib/Makefile
212 #
213 #       -O is pretty desirable, otherwise no inlining of prelude
214 #               things (incl "+") happens when compiling with this compiler
215
216 ifeq "$(GhcWithHscBuiltViaC)" "YES"
217 GhcLibHcOpts=-O
218 else
219 GhcLibHcOpts=-O -split-objs -odir $*
220 endif
221
222 # Option flags to pass to GHC when it's compiling RTS modules
223 # This is a good way to set things like -optc-g and -optc-DDEBUG for the RTS.
224 # GhcRtsHcOpts is used when compiling .hc files.
225 # GhcRtsCcOpts is used when compiling .c  files.
226
227 GhcRtsHcOpts=-O2
228 GhcRtsCcOpts=-O2 -optc-fomit-frame-pointer
229
230 # Build the Haskell Readline bindings?
231 #
232 GhcLibsWithReadline=NO
233 #
234 # Include path to readline.h
235 # (no path == in standard include path)
236 #
237 ReadlineIncludePath=
238
239 # Strip local symbols from libraries?  This can make the libraries smaller,
240 # but makes debugging somewhat more difficult.  Doesn't work with all ld's.
241 #
242 StripLibraries=NO
243
244 # Include compiler support for letting the compiler (optionally) report
245 # your compilation to a central server for generation of fun stats.
246 #
247 GhcReportCompiles=NO
248
249 # Win32 only: Enable the RTS and libraries to be built as DLLs
250 #
251 EnableWin32DLLs=@EnableWin32DLLs@
252
253 #################################################################################
254 #
255 #               happy project
256 #
257 #       Happy specific options
258 #
259 #################################################################################
260
261 # The compiler you'd like to use to compile Happy
262 WithHappyHc = $(WithGhcHc)
263
264 # HappyHcOpts gives the flags to pass to the Haskell compiler used
265 #             to compile the Happy sources with.
266 #
267 HappyHcOpts = -O
268
269 #################################################################################
270 #
271 #               haggis project
272 #
273 #       Haggis specific options
274 #
275 #################################################################################
276
277 #################################################################################
278 #
279 #               green-card project
280 #
281 #       Green-card specific options
282 #
283 #################################################################################
284
285 #################################################################################
286 #
287 #               nofib project
288 #
289 #       nofib specific options
290 #
291 #################################################################################
292
293
294 # NoFibSubDirs controls which set of tests should be run
295 # You can run one or more of
296 #       imaginary 
297 #       spectral
298 #       real
299 #       parallel
300 #       PRIVATE
301 #       PENDING
302 #       UNUSED
303 NoFibSubDirs = imaginary spectral real
304
305 # The different ways to build nofib. Default is just to mirror
306 # what is done for the ghc prelude libraries.
307 #
308 NoFibWays = $(GhcLibWays)
309
310 # Haskell compiler options for nofib
311 NoFibHcOpts = -O
312
313 # ==============================================================================
314 #
315 #                       END OF PROJECT-SPECIFIC STUFF
316 #
317 #               Now come the generic configuration options
318 #
319 # ==============================================================================
320
321 #################################################################################
322 #
323 #               Paths (see paths.mk)
324 #
325 #################################################################################
326
327 TMPDIR                  = /tmp
328
329 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path.
330
331 FPTOOLS_TOP_ABS         = @hardtop@
332
333 #
334 # Installation directories, we don't use half of these,
335 # but since the configure script has them on offer while
336 # passing through, we might as well set them.
337
338 prefix                  = @prefix@
339 exec_prefix             = @exec_prefix@
340 bindir                  = @bindir@
341 #UNUSED, see below: libexecdir              = @libexecdir@
342 datadir                 = @datadir@
343 #sysconfdir              = @datadir@
344 #sharedstatedir          = @sharedstatedir@
345 #localstatedir           = @localstatedir@
346 libdir                  = @libdir@
347 infodir                 = @infodir@
348 includedir              = @includedir@
349 oldincludedir           = @oldincludedir@
350 mandir                  = @mandir@
351 #UNUSED:srcdir          = @srcdir@
352
353
354 # Default values for most of the above are only set if
355 # they weren't configured to anything in particular
356 # via the configure script. (i.e., we make no assumption
357 # that the autoconf-generated script will assign defaults
358 # to all of the above).
359 #
360 ifeq "$(strip $(exec_prefix))" ""
361 exec_prefix             = $(prefix)
362 endif
363 ifeq "$(strip $(bindir))" ""
364 bindir                  = $(exec_prefix)/bin
365 endif
366
367 #
368 # NOTE: by intention, libexecdir and libdir point to 
369 # the same place.
370 #  => Only way to override this is to set libexecdir= on the command line.
371 #     (NOTE: configure script setting is ignored).
372 libexecdir              = $(libdir)
373
374 ifeq "$(strip $(datadir))" ""
375 datadir         = $(prefix)/share
376 endif
377 ifeq "$(strip $(libdir))" ""
378 libdir          = $(exec_prefix)/lib
379 endif
380 ifeq "$(strip $(infodir))" ""
381 infodir         = $(prefix)/info
382 endif
383 ifeq "$(strip $(includedir))" ""
384 includedir      = $(prefix)/include
385 endif
386 ifeq "$(strip $(oldincludedir))" ""
387 oldincludedir   = /usr/include
388 endif
389 ifeq "$(strip $(mandir))" ""
390 mandir          = $(prefix)/man
391 endif
392  
393
394 #################################################################################
395 #
396 #               Utilities programs: flags
397 #
398 #################################################################################
399
400 # If you want to give any standard flags to pretty much any utility
401 # (see utils.mk for a complete list), by adding a line here
402 #
403 #       SRC_P_OPTS += ...
404 #
405 # where P is the utility. For example, to add -O to all Haskell
406 # compilations, 
407 #
408 #       SRC_HC_OPTS += -O
409
410
411 #################################################################################
412 #
413 #               Utilities programs: where to find them
414 #
415 #################################################################################
416
417 #-----------------------------------------------------------------------------
418 # FPtools Utility locations
419
420 # By default, the various utils needed to be build ghc and chums
421 # is set up to point to the utils/ directory. Define here the
422 # path prefix for the utilities. Notice that it's a prefix with
423 # a trailing slash, so that it can be concatenated directly on
424 # front of a program name; if it's not set then we just look
425 # along the shell's $(PATH)
426 #
427 # If instead you want to use installed or your own versions of these,
428 # override the various *_PREFIX in build.mk, i.e., having the following
429 # in build.mk:
430 #
431 #   MKDEPENDC_PREFIX=
432 #
433 # will force `make' to rummage around in your PATH to find `mkdependC' (not
434 # sure it would need it in the first place, but still).
435 #
436 GLAFP_UTILS             = $(FPTOOLS_TOP)/glafp-utils
437
438 SCRIPT_PREFIX           = $(GLAFP_UTILS)/scripts/
439 MKDEPENDC_PREFIX        = $(GLAFP_UTILS)/mkdependC/
440 LTX_PREFIX              = $(GLAFP_UTILS)/ltx/
441 RUNTEST_PREFIX          = $(GLAFP_UTILS)/runstdtest/
442 VERBATIM_PREFIX         = $(GLAFP_UTILS)/verbatim/
443 SGMLVERB_PREFIX         = $(GLAFP_UTILS)/sgmlverb/
444 ETAGS_PREFIX            = $(GLAFP_UTILS)/etags/
445 MSUB_PREFIX             = $(GLAFP_UTILS)/msub/
446 LNDIR_PREFIX            = $(GLAFP_UTILS)/lndir/
447 MKDIRHIER_PREFIX        = $(GLAFP_UTILS)/mkdirhier/
448
449 # Still used?
450 LITERATE                = $(FPTOOLS_TOP)/literate
451
452 LITERATE_PREFIX         = $(FPTOOLS_TOP)/literate/
453 INFO_PREFIX             = $(FPTOOLS_TOP)/literate/info-utils/
454 TEXI2HTML_PREFIX        = $(LITERATE_PREFIX)texi2html/
455
456 HAPPY_PREFIX            = $(FPTOOLS_TOP)/happy/src/
457 GREENCARD_PREFIX        = $(FPTOOLS_TOP)/green-card/src/
458
459 RTS_PREFIX              = $(FPTOOLS_TOP)/common-rts/
460
461 UNLIT_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/unlit/
462 UGEN_PREFIX             = $(FPTOOLS_TOP)/ghc/utils/ugen/
463 STAT2RESID_PREFIX       = $(FPTOOLS_TOP)/ghc/utils/stat2resid/
464 HP2PS_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hp2ps/
465 HSCPP_PREFIX            = $(FPTOOLS_TOP)/ghc/utils/hscpp/
466 HSTAGS_PREFIX           = $(FPTOOLS_TOP)/ghc/utils/hstags/
467
468
469 #-----------------------------------------------------------------------------
470 # Haskell compiler and mkdependHS
471
472 HC              = $(FPTOOLS_TOP)/ghc/driver/ghc
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 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 `mp': 
703 WAY_mp_NAME=parallel
704 WAY_mp_HC_OPTS=-parallel
705
706 # Way `mg': 
707 WAY_mg_NAME=GranSim
708 WAY_mg_HC_OPTS=-gransim
709
710 # Way `dll': 
711 WAY_dll_NAME=Win32 DLLs
712 WAY_dll_HC_OPTS=
713
714 #
715 # Add user-way configurations here:
716 #
717 WAY_A_NAME=
718 WAY_A_HC_OPTS=
719
720 WAY_B_NAME=
721 WAY_B_HC_OPTS=
722
723 WAY_a_NAME=
724 WAY_a_HC_OPTS=
725
726 WAY_b_NAME=
727 WAY_b_HC_OPTS=
728
729 WAY_c_NAME=
730 WAY_c_HC_OPTS=
731
732 WAY_d_NAME=
733 WAY_d_HC_OPTS=
734
735 WAY_e_NAME=
736 WAY_e_HC_OPTS=
737
738 WAY_f_NAME=
739 WAY_f_HC_OPTS=
740
741 WAY_g_NAME=
742 WAY_g_HC_OPTS=
743
744 WAY_h_NAME=
745 WAY_h_HC_OPTS=
746
747 WAY_i_NAME=
748 WAY_i_HC_OPTS=
749
750 WAY_j_NAME=
751 WAY_j_HC_OPTS=
752
753 WAY_k_NAME=
754 WAY_k_HC_OPTS=
755
756 WAY_l_NAME=
757 WAY_l_HC_OPTS=
758
759 WAY_m_NAME=
760 WAY_m_HC_OPTS=
761
762 WAY_n_NAME=
763 WAY_n_HC_OPTS=
764
765 WAY_o_NAME=
766 WAY_o_HC_OPTS=