haskell-jp / beginners #17 at 2021-08-25 13:26:32 +0900

windows10のコマンドプロンプトで
stack install hmatrix
としたところ、以下のようなエラーが出ました。
hmatrix> configure
hmatrix> Configuring hmatrix-0.20.2...
hmatrix> Cabal-simple_Z6RU0evB_3.2.1.0_ghc-8.10.4.exe: Missing dependencies on foreign
hmatrix> libraries:
hmatrix> * Missing (or bad) C libraries: blas, lapack
hmatrix> This problem can usually be solved by installing the system packages that
hmatrix> provide these libraries (you may need the "-dev" versions). If the libraries
hmatrix> are already installed but in a non-standard location then you can use the
hmatrix> flags --extra-include-dirs= and --extra-lib-dirs= to specify where they are.If
hmatrix> the library files do exist, it may contain errors that are caught by the C
hmatrix> compiler at the preprocessing stage. In this case you can re-run configure
hmatrix> with the verbosity flag -v3 to see the error messages.

情報が足りないかもしれませんが、このエラーの原因を教えていただきたいです。よろしくお願いします。
エラーメッセージのとおり、blasとlapackというライブラリーがインストールされていないためのエラーです。
「windows lapack」や「windows blas」で検索するとどこかしらでそれらのdllファイルとhファイルが見つかるかと思います。
インストールする際は stack.yaml の extra-include-dirs という設定項目で .h ファイルが含まれているディレクトリーを指定し、 extra-lib-dirs という設定項目で .dll ファイルが含まれるディレクトリーを指定してください。
また、コンパイルした後の実行時に .dll ファイルが含まれているディレクトリーを PATH に追加しておく必要もあったはずなので、その点もご注意を。