Skip to content

Commit

Permalink
cabalコマンドであるべきところがstackコマンドになっていたので修正
Browse files Browse the repository at this point in the history
commercialhaskell/stack#3420 や `stack build --help` を読む限り、そもそもstackに `--static` というオプションはまだ実装されていないようですが、 `stack build --static` というのはオプションはどこから出てきた情報でしょうか?
  • Loading branch information
igrep committed Oct 28, 2019
1 parent 0cc9b51 commit 6652e1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pages/stack/tips/cabal.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ stack | cabal | 備考
------|--------|-------
`stack init` | `cabal init -n --is-executable` <br> `cabal init --simple` <br> `cabal init --lib` <br> `cabal init --exe` <br> `cabal init --libandexe` | [#5707](https://github.com/haskell/cabal/pull/5707), [#5759](https://github.com/haskell/cabal/pull/5759), [#5864](https://github.com/haskell/cabal/pull/5864)
`stack build` | `cabal new-build`
`stack build --static` | `stack new-build --enable-executable-static` | [#5446](https://github.com/haskell/cabal/pull/5446)
`stack build --static` | `cabal new-build --enable-executable-static` | [#5446](https://github.com/haskell/cabal/pull/5446)
`stack test` | `cabal new-test --enable-tests` <br> `cabal new-test all` | [#5079](https://github.com/haskell/cabal/issues/5079)
`stack repl` <br> `stack ghci` | `cabal new-repl`
`stack repl --package <pkg1> <pkg2>` | `cabal new-repl --build-dep <pkg1>, <pkg2>` | [#5845](https://github.com/haskell/cabal/pull/5845)
Expand Down

0 comments on commit 6652e1d

Please sign in to comment.