0

我想将haskell代码编译为javascript,并在编译过程中出现以下错误。

> ghcjs Main.hs 

Main.hs:2:8:
    Could not find module ‘Reflex.Dom’
    Use -v to see a list of the files searched for.

Main.hs:4:8:
    Could not find module ‘Data.Matrix’
    Perhaps you meant Data.Ratio (from base-4.8.0.0)
    Use -v to see a list of the files searched for.

我没有使用堆栈,我想知道在编译期间我应该如何提供库?

4

1 回答 1

0

使用 Cabal 管理您的项目,在 build-dep 会话中编写依赖项。然后安装你的项目。

于 2017-05-13T09:28:38.413 回答