File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed
test/integration/tests/internal-libraries Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change 1
- import Control.Monad ( unless )
2
1
import StackTest
3
2
4
3
main :: IO ()
5
- -- See https://github.com/haskell/cabal/issues/7763. On macOS (Apple silicon),
6
- -- fails with Cabal error:
7
- -- "Cabal-simple_SvXsv1f__3.2.1.0_ghc-8.10.7: Cannot build some foreign libraries:
8
- -- Building foreign libraries is currently only supported on OSX, Linux and
9
- -- Windows"
10
- main = unless ( isAarch64 && isMacOSX ) $ do
4
+ main = do
11
5
-- The '--install-ghc' flag is passed here, because etc/scripts/release.hs
12
6
-- passes `--no-install-ghc` when `--alpine` is passed to its 'check'
13
7
-- command.
14
- stack [" --install-ghc" , " setup" ] -- See stack.yaml; using GHC 8.10.7
8
+ stack [" --install-ghc" , " setup" ] -- See stack.yaml; using GHC 9.4.5
15
9
stack [" build" ]
Original file line number Diff line number Diff line change 11
11
# See https://github.com/haskell/cabal/issues/7763, which includes "Cabal is
12
12
# currently unable to build foreign libraries with GHC 9.0 or 9.2." 'Currently'
13
13
# refers to Cabal versions before 3.8.
14
- resolver : ghc-8.10.7
14
+ #
15
+ # Also see https://github.com/haskell/cabal/issues/7763. On macOS (Apple
16
+ # silicon), fails with resolver: ghc-8.10.7 with Cabal error:
17
+ # "Cabal-simple_SvXsv1f__3.2.1.0_ghc-8.10.7: Cannot build some foreign libraries:
18
+ # Building foreign libraries is currently only supported on OSX, Linux and
19
+ # Windows"
20
+ resolver : ghc-9.4.5
You can’t perform that action at this time.
0 commit comments