diff options
Diffstat (limited to 'hadrian/src/Rules/Generate.hs')
-rw-r--r-- | hadrian/src/Rules/Generate.hs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/hadrian/src/Rules/Generate.hs b/hadrian/src/Rules/Generate.hs index 5f226f438d..2ac01b4f48 100644 --- a/hadrian/src/Rules/Generate.hs +++ b/hadrian/src/Rules/Generate.hs @@ -50,13 +50,10 @@ derivedConstantsFiles = compilerDependencies :: Expr [FilePath] compilerDependencies = do stage <- getStage - isGmp <- (== "gmp") <$> getBignumBackend ghcPath <- expr $ buildPath (vanillaContext stage compiler) - ghcBignumPath <- expr $ buildPath (vanillaContext stage ghcBignum) rtsPath <- expr (rtsBuildPath stage) libDir <- expr $ stageLibPath stage mconcat [ return $ (libDir -/-) <$> derivedConstantsFiles - , notStage0 ? isGmp ? return [ghcBignumPath -/- "include/ghc-gmp.h"] , notStage0 ? return ((rtsPath -/-) <$> libffiHeaderFiles) , return $ fmap (ghcPath -/-) [ "primop-can-fail.hs-incl" |