3

私の実行可能ファイルを静的にリンクすると GHC が遅すぎるので、「-dynamic」オプションを使用してテストしたいと思います。次の 2 つのコマンドは問題ありませんが、同じエラーを引き起こしますcabal install mighttpd2

$cabal install --ghc-options=-dynamic mighttpd2
$cabal install --enable-executable-dynamic mighttpd2

Linking dist/build/mkindex/mkindex ...
Preprocessing executable 'mightyctl' for mighttpd2-2.7.1...
Process.hs:11:8:
    Could not find module `Data.Conduit.Process'
    Perhaps you haven't installed the "dyn" libraries for package `process conduit-0.5.0.2'?
    Use Perhaps you haven't installed the "dyn" libraries for package `process-conduit-0.5.0.2'?
    Use -v to see a list of the files searched for.
    cabal: Error: some packages failed to install:
    mighttpd2-2.7.1 failed during the building phase. The exception was:ExitFailure 1
4

1 に答える 1

4

mighttpd2に依存する すべてのライブラリの動的バージョンをインストールする必要があります。cabal-installの動的バージョンが利用できないことを正しく不平を言ってprocess-conduitいます。に渡されたmighttpd2の依存関係ツリー全体を再インストールする必要があります。--enable-shared --enable-executable-dynamiccabal-install

于 2012-09-02T00:40:33.823 に答える