diff options
author | panne <unknown> | 2000-04-21 15:48:38 +0000 |
---|---|---|
committer | panne <unknown> | 2000-04-21 15:48:38 +0000 |
commit | cb524d9e0991bad5762b31ade9907f037f6455c1 (patch) | |
tree | 82f5877bd805564834f85369998af45c7d5e58a0 /mk | |
parent | 677d7900d7f09ca8358275bfa5ee9c7765c55d4b (diff) | |
download | haskell-cb524d9e0991bad5762b31ade9907f037f6455c1.tar.gz |
[project @ 2000-04-21 15:48:38 by panne]
Further steps towards an empty build.mk:
* GHC is now built with -O by default
* hslibs/tools now use GhcLibToolsHcOpts, again -O by default
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index 762aee8c38..a20a3b1578 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -168,7 +168,7 @@ GhcCompilerWays= # # -dcore-lint check the types after every pass of the compiler; # a pretty strong internal check -GhcHcOpts= +GhcHcOpts=-O # GhcWithHscBuiltViaC - build GHC compiler proper (\`hsc') from .hc files? GhcWithHscBuiltViaC=@BootingFromHc@ @@ -262,7 +262,10 @@ GhcRtsCcOpts=-O2 -optc-fomit-frame-pointer HsLibsFor = ghc # hslibs for GHC also uses the following variables (defined above): -# GhcLibWays, GhcLibHcOpts, EnableWin32DLLs, StripLibraries +# GhcLibWays, GhcLibHcOpts, GhcLibToolsHcOpts, EnableWin32DLLs, StripLibraries + +# Haskell compiler options for tools in hslibs +GhcLibToolsHcOpts=-O # Build the Haskell Readline bindings? # |