我正在尝试将从8.0.2版安装的haskell堆栈的ghc版本更新到8.2.1但似乎我错过了一些东西。
[user@localhost ~]$ stack --resolver ghc-8.2.1 setup
stack will use a sandboxed GHC it installed
For more information on paths, see 'stack path' and 'stack exec env'
To use this GHC and packages outside of a project, consider using:
stack ghc, stack ghci, stack runghc, or stack exec
[user@localhost ~]$ stack ghci
Configuring GHCi with the following packages:
GHCi, version 8.0.2: http://www.haskell.org/ghc/ :? for help
Loaded GHCi configuration from /tmp/ghci7878/ghci-script
Prelude> :q
Leaving GHCi.
我想我需要做一些额外的步骤来更新堆栈的ghc版本,但我不确定。
答案 0 :(得分:2)
有两种选择。
临时解决方案是每次在加载堆栈时都必须提供ghc版本。
ghc --resolver ghc-8.2.1 ghci
如果您不提供ghc版本,则堆栈会加载默认版本。
第二个选项是将堆栈的ghc版本永久配置为默认版本。以下是用于该
的步骤configure *resolver: ghc-8.2.1* in the file *.stack/global-project/stack.yaml*
并重新启动堆栈。