在尝试编译我的 Phoenix 项目的发行版时,出现以下错误:

$ mix release
....
==> Generated .appup for myapp 0.0.1 -> 0.0.2
===> Missing beam file elf_format <<"/usr/lib/erlang/lib/hipe-3.11.2/ebin/elf_format.beam">>
could not find app plug {0,10,0}

$ elixir --version
Elixir 1.0.3

Phoenix 版本是 0.10.0。我做错了什么,还是 Phoenix 的一个错误?

最佳答案

这可以。这是因为您没有启用 hipe 编译器,但您不需要。一切都应该正常工作™。

关于 Elixir /Phoenix : Missing beam file elf_format < <"/usr/lib/erlang/lib/hipe-3.11.2/ebin/elf_format.beam",我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28935984/

10-12 20:31