Skip to content

Instantly share code, notes, and snippets.

@nattybear
Last active November 20, 2024 02:47
Show Gist options
  • Save nattybear/8b01a12a4c74ca63b312d6bdb6c8acd8 to your computer and use it in GitHub Desktop.
Save nattybear/8b01a12a4c74ca63b312d6bdb6c8acd8 to your computer and use it in GitHub Desktop.
cabal/cabal build all

cabal build all

cabal 프로젝트를 빌드할 때 아래와 같이 하면 진정한(?) 전체 빌드가 되지 않는다.

cabal build all

대신 아래처럼 두 옵션을 추가해야 전체 빌드가 된다.

cabal build all --enable-tests --enable-benchmarks

출처

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment