Euterpea을 사용하는 프로젝트를 만들려고합니다..cabal 파일을 '스택 빌드'로 변경하는 이유는 무엇입니까?
는 stack build
실행 난 내 .cabal
파일의 build-depends
섹션 Euterpea
를 추가 할 필요가 있음을 제안, 다음과 같은 오류가 발생합니다.
$ sb
composition-0.1.0.0: build (lib + exe)
Preprocessing library composition-0.1.0.0...
[2 of 2] Compiling Lib (src/Lib.hs, .stack-work/dist/x86_64-linux-nix/Cabal-1.24.2.0/build/Lib.o)
/home/matthew/backup/composition/composition/src/Lib.hs:5:1: error:
Failed to load interface for ‘Euterpea’
It is a member of the hidden package ‘Euterpea-2.0.4’.
Perhaps you need to add ‘Euterpea’ to the build-depends in your .cabal file.
Use -v to see a list of the files searched for.
-- While building package composition-0.1.0.0 using:
/home/matthew/.stack/setup-exe-cache/x86_64-linux-nix/Cabal-simple_mPHDZzAJ_1.24.2.0_ghc-8.0.2 --builddir=.stack-work/dist/x86_64-linux-nix/Cabal-1.24.2.0 build lib:composition exe:composition-exe --ghc-options " -ddump-hi -ddump-to-file"
Process exited with code: ExitFailure 1
내가 거기 Euterpea
추가하고 내 .cabal
파일의 library
섹션은 다음과 같다.
library
hs-source-dirs:
src
build-depends: base >= 4.7 && < 5
, Euterpea
exposed-modules:
Lib
other-modules:
Paths_composition
default-language: Haskell2010
그러나 나는 다시 stack build
을 실행할 때, 같은 오류를 제공 - 그리고 library
섹션은 다음
library
hs-source-dirs:
src
build-depends:
base >= 4.7 && < 5
exposed-modules:
Lib
other-modules:
Paths_composition
default-language: Haskell2010
왜 같이 찾고, 다시 원래 사용했던 내 .cabal
파일을 변경 내 cabal
파일을 변경하는 stack build
입니까? 전에는 그런 일이 발생하지 않았다.
사이드 참고 :이 관련되어 확실하지 않음 경우, 그러나 .cabal
파일의 형식은 일반적으로보다 다르게 나타납니다. 이전 프로젝트에서와 마찬가지로 나는 stack new <project-name>
을 실행하여 자동으로 초기화되었습니다. stack build
의 예기치 않은 동작을 일으키기 위해 이전 프로젝트와 다른 점이 있을지 모르겠습니다.