Skip to content

Commit 9b89e9b

Browse files
committed
Fix commercialhaskell#6498 Allow Stack to support GHC8.0.x
1 parent fa24aee commit 9b89e9b

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ Other enhancements:
1717

1818
Bug fixes:
1919

20+
* Due to a bug, Stack 2.15.1 did not support versions of GHC before 8.2. Stack
21+
now supports GHC versions from 8.0.
2022
* `--haddock-for-hackage` does not ignore `--haddock-arguments`.
2123
* On Windows, package locations that are Git repositories with submodules now
2224
work as intended.

src/Stack/Build/ExecuteEnv.hs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -230,12 +230,6 @@ getSetupExe setupHs setupShimHs tmpdir = do
230230
, toFilePath setupShimHs
231231
, "-o"
232232
, toFilePath tmpOutputPath
233-
-- See https://github.com/commercialhaskell/stack/issues/6267. As
234-
-- corrupt *.hi and/or *.o files can be problematic, we aim to
235-
-- to leave none behind. This can be dropped when Stack drops
236-
-- support for the problematic versions of GHC.
237-
, "-no-keep-hi-files"
238-
, "-no-keep-o-files"
239233
]
240234
compilerPath <- getCompilerPath
241235
withWorkingDir (toFilePath tmpdir) $

0 commit comments

Comments
 (0)