我已经用下面的命令为ejabberd和标准库构建了.plt文件:
$ dialyzer --build_plt --apps kernel stdlib erts mnesia eunit -o ./dialyzer/ejabberd.plt /path/to/ejabberd/repository/ebin/*.beam
生成的文件的手动检查表明该文件是有效的:
$ dialyzer --check_plt dialyzer/ejabberd.plt
Checking whether the PLT /home/citxx/.dialyzer_plt is up-to-date... yes
done (passed successfully)
但是当我尝试使用这个.plt文件检查我的源代码时,会发生以下错误:
$ dialyzer --plts dialyzer/ejabberd.plt ebin/*.beam
Checking whether the PLT dialyzer/ejabberd.plt is up-to-date...
dialyzer: The file: dialyzer/ejabberd.plt is not a valid PLT file
Use the options:
--build_plt to build a new PLT; or
--add_to_plt to add to an existing PLT
For example, use a command like the following:
dialyzer --build_plt --apps erts kernel stdlib mnesia
Note that building a PLT such as the above may take 20 mins or so
If you later need information about other applications, say crypto,
you can extend the PLT by the command:
dialyzer --add_to_plt --apps crypto
For applications that are not in Erlang/OTP use an absolute file name.
如果标准应用程序不包含在plt文件中,也会发生同样的情况。
这种行为的原因是什么?
乌利希期刊指南。我使用ejabberd 14.05和erlang OTP 17.0。
两件事:
-
-o
选项不会使Dialyzer将PLT写入给定文件,而是将分析结果写入。查看该文件,您将看到它是一个文本文件。您想要的选项是--output_plt
。 -
--check_plt
不接受PLT文件名。注意,它说/home/citxx/.dialyzer_plt
是有效的,而不是您引用的文件。您需要将其与--plt
或--plts
参数组合,如下所示:dialyzer --check_plt --plts dialyzer/ejabberd.plt