2017-12-09 11 views
3

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의 예기치 않은 동작을 일으키기 위해 이전 프로젝트와 다른 점이 있을지 모르겠습니다.

답변

5

프로젝트 디렉토리의 루트에 package.yaml이 있는지 확인하십시오.

package.yaml은 음부의 구문을 개선하기 위해 hpack으로 변환 된 새로운 파일 형식입니다.

스택은 stack build 명령이 hpack 명령을 사용하여 package.yaml을 cabal 파일로 자동 변환하기 때문에 hpack을 강력하게 지원합니다.

그래서 package.yaml을 삭제하거나 package.yaml을 수정하여 Euterpea 패키지를 추가하십시오. 형식을 YAML로 편집하는 것은 그리 어렵지 않을 것입니다.