diff options
author | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-23 17:08:48 +0200 |
---|---|---|
committer | Thomas Miedema <thomasmiedema@gmail.com> | 2015-06-24 00:49:52 +0200 |
commit | 95d503103a08418506298c936b76de4ae8651538 (patch) | |
tree | abb7ae05a4ccad5ef18ed2dc9edd8f42947cb7a2 /mk | |
parent | 73a6265e040fdbb2c9e75337663aa6879e20e233 (diff) | |
download | haskell-95d503103a08418506298c936b76de4ae8651538.tar.gz |
Build system: delete unused variables in config.mk.in
GhcStage1DefaultNewCodegen, GhcStage2DefaultNewCodegen,
GhcStage3DefaultNewCodegen and GhcCompilerWays are not used anywhere.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/config.mk.in | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/mk/config.mk.in b/mk/config.mk.in index cad5c71721..ab177af67e 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -48,10 +48,6 @@ NO_INCLUDE_PKGDATA = NO # The compiler used to build GHC is $(GHC). To change the actual compiler # used, re-configure with --with-ghc=<path-to-ghc>. -# Extra ways in which to build the compiler (for example, you might want to -# build a profiled compiler so you can see where it spends its time) -GhcCompilerWays= - # Extra option flags to pass to the compiler that compiles the compiler # (Ones that are essential are wired into compiler/Makefile) # Typical options to use here: @@ -72,16 +68,6 @@ GhcStage1HcOpts= GhcStage2HcOpts=-O2 GhcStage3HcOpts=-O2 -# These options modify whether or not a built compiler for a bootstrap -# stage defaults to using the new code generation path. The new -# code generation path is a bit slower, so for development just -# GhcStage2DefaultNewCodegen=YES, but it's also a good idea to try -# building all libraries and the stage2 compiler with the -# new code generator, which involves GhcStage1DefaultNewCodegen=YES. -GhcStage1DefaultNewCodegen=NO -GhcStage2DefaultNewCodegen=NO -GhcStage3DefaultNewCodegen=NO - GhcDebugged=NO GhcDynamic=NO |