We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
stack setup
1 parent 37cdf40 commit 708b516Copy full SHA for 708b516
ChangeLog.md
@@ -13,6 +13,8 @@ Behavior changes:
13
14
Other enhancements:
15
16
+* `stack setup` supports installing GHC for macOS aarch64 (M1)
17
+
18
Bug fixes:
19
20
* Ensure that `extra-path` works for case-insensitive `PATH`s on Windows.
src/Stack/Setup.hs
@@ -1266,6 +1266,7 @@ getOSKey platform =
1266
Platform Arm Cabal.Linux -> return "linux-armv7"
1267
Platform AArch64 Cabal.Linux -> return "linux-aarch64"
1268
Platform Sparc Cabal.Linux -> return "linux-sparc"
1269
+ Platform AArch64 Cabal.OSX -> return "macosx-aarch64"
1270
Platform arch os -> throwM $ UnsupportedSetupCombo os arch
1271
1272
downloadOrUseLocal
0 commit comments