You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I try to install crux-mir. But I get errors when trying to run the command:
$ cabal v2-install exe:crux-mir --overwrite-policy=always
Wrote tarball sdist to
/home/zhuyt/Repos/RUST/crucible/dist-newstyle/sdist/crucible-0.7.0.99.tar.gz
Error: cabal: sdist of crucible-cli-0.1: invalid file glob
'test-data/**/*.cbl'. Using the double-star syntax requires 'cabal-version:2.4' or greater. Alternatively, for compatibility with earlier Cabal versions,
list the included directories explicitly.
However, cabal v2-build works well.
Then, I try to switch LLVM(from 12 to 16) and GHC, none of them help. Thanks for helping me to solve this problem.
The text was updated successfully, but these errors were encountered:
* Neither package's `.cabal` file contains a `README.md` file, so remove
mention of this file name from the `extra-doc-files`.
* `crucible-cli.cabal` uses double-star syntax (`test-data/**/*.cbl`) in its
`extra-source-files`, which requires a `cabal-version` or `2.4` or greater.
Make sure that `crucible-cli.cabal` properly declares this version
dependency.
Fixes#1209.
Sorry about that. The issue has nothing to do with the LLVM or GHC version, but rather a slight misconfiguration in the .cabal files themselves. I've opened #1210 to address this.
It is possible to misconfigure a package's `.cabal` file in a way that is not
easily detectable unless you try to bundle the package into a source
distribution (e.g., through the `cabal sdist` or `cabal install` commands).
These sorts of misconfigurations have snuck into the `crucible`-related
packages in the past (see #1209 for one such example).
To prevent these sorts of issues from happening in the future, we now run
`cabal sdist` on each package in the CI as a sanity check.
I try to install
crux-mir
. But I get errors when trying to run the command:However,
cabal v2-build
works well.Then, I try to switch
LLVM
(from 12 to 16) andGHC
, none of them help. Thanks for helping me to solve this problem.The text was updated successfully, but these errors were encountered: