From cfebbe79f39368b30f2bf1b368688a9f01d08160 Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Thu, 16 Dec 2021 15:33:09 -1000 Subject: [PATCH] ;dev: make: use ghc 8.10 till 9.x has arm binaries --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d5ae17688..b037e77c3 100644 --- a/Makefile +++ b/Makefile @@ -86,6 +86,8 @@ GHCI=ghci #-package ghc-datasize #-package ghc-heap-view # can override this with an env var, eg: # STACK="stack --stack-yaml=stack8.10.yaml" make functest STACK ?= stack +# use older GHC till there's newer arm binaries on mac +STACK=stack --stack-yaml=stack8.10.yaml # if using an unreleased stack with a newer hpack than the one mentioned in */*.cabal, # it will give warnings. To silence these, put the old hpack-X.Y in $PATH and uncomment: @@ -373,7 +375,7 @@ ghcid-shake: $(call def-help,ghcid-shake, start ghcid autobuilder on Shake.hs) # run default GHCI STACKGHCI=$(STACK) -# run latest GHCI for modern features +# use latest GHCI for modern features #STACKGHCI=stack --stack-yaml=stack9.2.yaml # multi-package GHCI prompts