2

随着 cabal-3 的发布,来自 Hackage 的软件包被安装在编译器一无所知的新ghc位置ghc-pkg。换句话说,软件包已安装但未注册ghc. Ghci, ghc,ghc-pkg不能工作。

例如,

cabal install safe --lib

创建文件 t1.hs

import Safe

t1 = tailMay [1,2,3]

我们试试看:

> ghci t1.hs
GHCi, version 8.10.2: https://www.haskell.org/ghc/:? for help
[1 of 1] Compiling Main (t1.hs, interpreted)

t1.hs: 1: 1: error:
    Could not find module `Safe '
    Use -v (or `: set -v` in ghci) to see a list of the files searched for.
  |
1 | import Safe
  | ^^^^^^^^^^^
Failed, no modules loaded.

此处描述了此错误

https://github.com/haskell/cabal/issues/6262

和这里

https://gitlab.haskell.org/ghc/ghc/-/issues/17341

我用作设置系统变量的临时解决方案

GHC_PACKAGE_PATH=C:\Users\me\AppData\Roaming\cabal\store\ghc-8.10.2\package.db;

(Windwos 10,巧克力的 haskell-dev)

通过 在 Windows 上,使用 cabal 安装的软件包似乎在 ghc/ghci 中不可用

但随着更新,我将不得不手动更改此系统变量。

这个问题有没有更优雅的解决方案?

PS 不幸的是,这个解决方案(通过 GHC 的环境变量 GHC_PACKAGE_PATH)与 Cabal 不兼容 :(

https://github.com/haskell/cabal/issues/1944

4

2 回答 2

1

实现此目的的一种方法是,--env只要您在当前目录中,就使用该标志使库对 GHC 可用:

~ $ mkdir /tmp/foo
~ $ cd /tmp/foo
/tmp/foo $ cabal install safe --lib --env .
Resolving dependencies...
Build profile: -w ghc-8.8.3 -O1
In order, the following will be built (use -v for more details):
 - safe-0.3.19 (lib) (requires build)
Configuring library for safe-0.3.19..
Preprocessing library for safe-0.3.19..
Building library for safe-0.3.19..
…
 > Installing library in /home/jojo/.cabal/store/ghc-8.8.3/incoming/new-4056/home/jojo/.cabal/store/ghc-8.8.3/safe-0.3.19-92fbaef88124b4508ce447f6245bc793f7a1748247ae68d10e449150df1069af/lib
t1.hs
/tmp/foo $ cat > t1.hs
import Safe

t1 = tailMay [1,2,3]
/tmp/foo $ ls -a
.  ..  .ghc.environment.x86_64-linux-8.8.3  t1.hs
/tmp/foo $ ghci t1.hs
GHCi, version 8.8.3: https://www.haskell.org/ghc/  :? for help
Loaded package environment from /tmp/foo/.ghc.environment.x86_64-linux-8.8.3
[1 of 1] Compiling Main             ( t1.hs, interpreted )
Ok, one module loaded.
*Main> 

请注意,您可能不应该在您实际拥有foo.cabal文件的目录中执行此操作。有关详细信息,请参阅文档cabal v2-install

于 2020-08-30T13:29:37.033 回答
0

使用GHC_ENVIRONMENT更好:

  setx  GHC_ENVIRONMENT C:\Users\me\.ghc\x86_64-mingw32-8.10.2\environments\default

它有助于ghcghci

之后,C:\Users\me\AppData\Roaming\cabal\config我们应该添加

  package-db: C:\Users\me\AppData\Roaming\cabal\store\ghc-8.10.2\package.db

它有助于cabal

不幸的是,ghc-pkg仍然有问题并且可以使用这样的标志:

  ghc-pkg list --user-package-db="C:\Users\me\AppData\Roaming\cabal\store\ghc-8.10.2\package.db"

对于 Linux,步骤类似。

于 2020-09-11T17:51:52.660 回答