Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用ocamldoc. 但是,我使用该Core库并ocamldoc抱怨找不到它。
ocamldoc
Core
Error: Unbound module Core
我明白为什么要感谢这个问题,但它没有提到标准模块的任何解决方案。
有什么帮助吗?
ocamldoc需要查看编译好的界面Core,即文件core.cmi。这可以通过以下机制之一来完成:
core.cmi
-I dir
dir
ocamldoc -I $(opam config var core:lib) ...
ocamlfind
-package core
ocamlfind ocamldoc -package core