diff options
| author | Simon Marlow <marlowsd@gmail.com> | 2009-07-20 14:50:53 +0000 |
|---|---|---|
| committer | Simon Marlow <marlowsd@gmail.com> | 2009-07-20 14:50:53 +0000 |
| commit | 872bd77dda95ff67340588ee5b5653a9f289d369 (patch) | |
| tree | e78c6909b341f690cd4f8748ada02f84c6de10a6 | |
| parent | fa9f1e20691ca55ddf83f568497d4ed7ed754ba8 (diff) | |
| download | haskell-872bd77dda95ff67340588ee5b5653a9f289d369.tar.gz | |
remove unused $(HscIfaceFileVersion)
| -rw-r--r-- | compiler/ghc.mk | 2 | ||||
| -rw-r--r-- | compiler/main/DynFlags.hs | 1 | ||||
| -rw-r--r-- | mk/config.mk.in | 19 |
3 files changed, 0 insertions, 22 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index 400b6b3d48..4a042cb5f7 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -51,8 +51,6 @@ $(compiler_CONFIG_HS) : mk/config.mk mk/project.mk @echo "cBooterVersion = \"$(GhcVersion)\"" >> $@ @echo "cStage :: String" >> $@ @echo "cStage = show (STAGE :: Int)" >> $@ - @echo "cHscIfaceFileVersion :: String" >> $@ - @echo "cHscIfaceFileVersion = \"$(HscIfaceFileVersion)\"" >> $@ @echo "cSplitObjs :: String" >> $@ @echo "cSplitObjs = \"$(SupportsSplitObjs)\"" >> $@ @echo "cGhcWithInterpreter :: String" >> $@ diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 20ac77e6f4..17dc60c67e 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -2366,7 +2366,6 @@ compilerInfo = [("Project name", String cProjectName), ("Project version", String cProjectVersion), ("Booter version", String cBooterVersion), ("Stage", String cStage), - ("Interface file version", String cHscIfaceFileVersion), ("Have interpreter", String cGhcWithInterpreter), ("Object splitting", String cSplitObjs), ("Have native code generator", String cGhcWithNativeCodeGen), diff --git a/mk/config.mk.in b/mk/config.mk.in index ac0059919b..8c33bb2e24 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -205,25 +205,6 @@ BeConservative = NO BuildingParallel=$(subst mp,YES,$(filter mp,$(WAYS))) BuildingGranSim=$(subst mg,YES,$(filter mg,$(WAYS))) -# Interface file version (hi-boot files only) -# -# A GHC built with HscIfaceFileVersion=n will look for -# M.hi-boot-n, and only then for -# M.hi-boot. -# (It'll be happy with the latter if the former doesn't exist.) -# -# -# This variable is used ONLY for hi-boot files. Its only purpose is -# to allow you to have a single directory with multiple .hi-boot files -# for the same module, each corresponding to a different version of -# GHC. -# -# HscIfaceFileVersion is propagated to hsc via -# compiler/main/Config.hs, which is automatically generated by -# compiler/Makefile. - -HscIfaceFileVersion=6 - #------------------------------------------------------------------------------ # Options for Libraries |
