erlc -I <abspath-to-include-dir> <module>.erl正确编译<module>
erlc -I <abspath-to-include-dir> <module>.erl
<module>
但是在Erlang shell(erl)中,以下内容会产生“找不到包含文件”错误:
erl
c(<module>,[{i,<abspath-to-include-dir>}]).
为什么?这两种编译文件的方式不应该相同吗?
尝试将路径写为目录列表,例如{i,[".../here/",".../there/"]},即使它只是一个目录。
{i,[".../here/",".../there/"]}