dialyxir mix task to create PLT exits without error or creating table

僤鯓⒐⒋嵵緔 提交于 2019-12-02 10:08:23

Like you mentioned in the comments, the complete error message when running dialyzer directly included the text Killed at the end. That's Linux's Out-of-memory killer killing the process for using too much resources (most likely RAM/swap) since the VM only had ~489MiB of RAM. dialyzer's PLT creation is pretty CPU/memory intensive, so increasing the RAM (to say 1 or 2GB) should fix this.

mix dialyzer --plt

Command line option mix dialyxir.plt returns error as of dialyxir 0.4.3. Dot syntax replaced by flag added above.

References:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!