1

Windows 10 64 ビット、Cabal-3.4.0.0、ghc-8.10.7 を使用。コマンドでMSYS2環境にOpenBLASをインストールしました pacman -S mingw-w64-x86_64-openblas。より、コマンドでhmatrix-0.20.2を正常にインストールしました

cabal install --lib hmatrix --flags=openblas --extra-include-dirs="C:\\ghcup\\msys64\\mingw64\\include\\OpenBLAS" --extra-lib-dirs="C:\\ghcup\\msys64\\mingw64\\bin" --extra-lib-dirs="C:\\ghcup\\msys64\\mingw64\\lib"

cabal build cabalhmatrixメインを使用して簡単なテストプロジェクトを構築しようとしています

module Main where

import Numeric.LinearAlgebra

main :: IO ()
main = do
  putStrLn $ show $ vector [1,2,3] * vector [3,0,-2]

しかし今、私は出力を得ています

Resolving dependencies...
Build profile: -w ghc-8.10.7 -O1
In order, the following will be built (use -v for more details):
- hmatrix-0.20.2 (lib) (requires build)
- cabalhmatrix-0.1.0.0 (exe:cabalhmatrix) (first run)
Starting     hmatrix-0.20.2 (lib)

Failed to build hmatrix-0.20.2. The failure occurred during the configure
step.
Build log (
C:\cabal\logs\ghc-8.10.7\hmatrix-0.20.2-6dd2e8f2795550e4dd624770ac98c326dacc0cac.log
):
Warning: hmatrix.cabal:21:28: Packages with 'cabal-version: 1.12' or later
should specify a specific version of the Cabal spec of the form
'cabal-version: x.y'. Use 'cabal-version: 1.18'.
Configuring library for hmatrix-0.20.2..
cabal-3.4.0.0.exe: Missing dependencies on foreign libraries:
* Missing (or bad) C libraries: blas, lapack
This problem can usually be solved by installing the system packages that
provide these libraries (you may need the "-dev" versions). If the libraries
are already installed but in a non-standard location then you can use the
flags --extra-include-dirs= and --extra-lib-dirs= to specify where they are.If
the library files do exist, it may contain errors that are caught by the C
compiler at the preprocessing stage. In this case you can re-run configure
with the verbosity flag -v3 to see the error messages.

cabal-3.4.0.0.exe: Failed to build hmatrix-0.20.2 (which is required by
exe:cabalhmatrix from cabalhmatrix-0.1.0.0). See the build log above for
details.

そのパッケージを正しくビルドするにはどうすればよいですか? コンパイル中に hmatrix に何らかの形で引数--flags=openblas --extra-include-dirs="C:\\ghcup\\msys64\\mingw64\\include\\OpenBLAS" --extra-lib-dirs="C:\\ghcup\\msys64\\mingw64\\bin" --extra-lib-dirs="C:\\ghcup\\msys64\\mingw64\\lib"を渡す必要があると思いますが、その方法がわかりません。正直なところ、これらの引数 (cabal、ghc、ghc-pkg など) が正確にどのプログラムのものであるか、およびなぜ cabal が hmatrix を再度インストールしようとしているのかがわかりません。ディレクトリに hmatrix が表示され"C:\cabal\store\ghc-8.10.7\hmatrix-0.20.2-e917eca0fc7690010007a19f4f2a3602d86df0f0"ます。


作成されたcabal.projectファイル:

packages: .

package hmatrix
  flags: +openblas
  extra-include-dirs: C:\\ghcup\\msys64\\mingw64\\include\\OpenBLAS
  extra-lib-dirs: C:\\ghcup\\msys64\\mingw64\\bin, C:\\ghcup\\msys64\\mingw64\\libenter code here

変数 cabal プロジェクトlibopenblas.dllに場所を追加した後、作業中です。PATH

4

1 に答える 1