如何使用llvm-general的特定分支与堆栈

时间:2017-05-07 08:10:14

标签: haskell cabal haskell-stack

在我的一个项目中,我想使用llvm-generalllvm-general-pure,但我想使用与llvm 3.9一起使用的llvm-3.9分支,这些hackage上的这些库的最新版本适用于llvm 3.5。

我的项目是一个堆栈项目,这就是我在stack.yaml中所拥有的:

resolver: nightly-2017-05-01       
packages:
- '.'
- location:
     git: https://github.com/bscarlet/llvm-general.git     
     commit: 61fd03639063283e7dc617698265cc883baf0eec
  subdirs:
     - llvm-general
     - llvm-general-pure
  extra-dep: true    

所有其他选项都保留为默认值。

这是我的project.cabal:

name:                compiler-final
version:             0.1.0.0    
category:            Compiler
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Lexer,Parser,ParserTestData,CodeGen
  other-modules:       Prelude,StateTUtil
  ghc-options:         -Wall -dcore-lint -fhpc -XNoImplicitPrelude -fobject-code
  build-depends:       base-noprelude >= 4.7 && < 5 , megaparsec < 6 , transformers < 1, unordered-containers < 1 , hashable < 2
                       ,classy-prelude , either < 5 , mono-traversable < 2 , logfloat < 0.14 , text
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

executable compiler-final-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -XNoImplicitPrelude -with-rtsopts=-N -fobject-code
  build-depends:       base
                     , compiler-final
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings

test-suite compiler-final-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  other-modules:       LexerSpec , ParserSpec
  main-is:             Spec.hs
  build-depends:       base
                       , compiler-final, megaparsec < 6 , hspec < 3,hspec-megaparsec >= 0.3,unordered-containers < 1
                       ,hashable,transformers < 1,text,bytestring , mtl, text
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -fhpc -Wall -XNoImplicitPrelude -fobject-code
  default-language:    Haskell2010
  default-extensions:  OverloadedStrings
Benchmark compiler-final-bench
  type:                exitcode-stdio-1.0
  hs-source-dirs:      bench
  main-is:             Bench.hs
  other-modules:       ParserBench
  build-depends:       base,compiler-final,megaparsec < 6 ,unordered-containers < 1,QuickCheck<3
                       ,hashable
  ghc-options:         -rtsopts -auto-all -caf-all -fforce-recomp -fobject-code
  default-language:    Haskell2010

不幸的是在CodeGen.hs中这个简单的import语句没有编译:{{1​​}},它说没找到模块。

现在我通过import LLVM.General.AST全局安装了llvm-general分支3.9,我可以使用cabal install(不是ghci -package)访问它,并且上面的模块存在。

我尝试将stack ghcillvm-general添加到版本为llvm-general-pure的依赖项列表中,但堆栈似乎尝试安装版本3.9.0.0,因为它会报告有关不匹配版本的错误。

那么如何实现我想要的呢?

1 个答案:

答案 0 :(得分:1)

您的llvm-general未将llvm-general-pureLLVM.General.AST列为依赖关系,因此未找到stack.yaml的原因。

此外,您的master指向stack,因此stack只会看到版本3.5。如果版本3.9不在stack.yaml文件中,则ec1ad5bd2112e7f64dbb43441b5e2075cf6ad8e不知道任何内容。之一:

  • 将提交更改为location;
  • 或者,如果您在本地克隆了分支,则可以使用

    替换与存储库对应的整个- location: 'path/to/llvm-general' extra-dep: true - location: 'path/to/llvm-general-pure' extra-dep: true 字段
    reporter