我正在使用OCaml Makefile进行我正在进行的项目,我有以下模块
DynamicTree.ml
Huffman_Dynamic.ml
的 DynamicTree
Huffman_Static.ml
main.ml
同时使用 Huffman_Static
和 Huffman_Dynamic
。
这是我的make文件:
# put here the names of your source files (in the right order)
SOURCES = huffman_static.ml dynamictree.ml huffman_dynamic.ml main.ml
# the name of the resulting executable
RESULT = huffman
# generate type information (.annot files)
ANNOTATE = yes
# make target (see manual) : byte-code, debug-code, native-code
all: native-code
include OCamlMakefile
当我尝试制作项目时,我得到一个Unbound value DynamicTree.create_anchor_leaf
,它来自Makefile生成的ocamlopt -c -dtypes huffman_dynamic.ml
。
Ocaml Makefile wepage states that it generates自动依赖,我在这里遗漏了什么吗?
谢谢。
答案 0 :(得分:8)
您姓名的大小写是否正确?在您的帖子中,您同时使用DynamicTree.ml
和dynamictree.ml
。
您确定问题来自Makefile吗? create_anchor_leaf
导出了真正的DynamicTree.ml
函数吗?没有.mli
隐藏它吗?