Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Elixir/Phoenix: Missing beam file elf_format <<"/usr/lib/erlang/lib/hipe-3.11.2/ebin/elf_format.beam"

While trying to compile a release of my Phoenix project, the following error comes up:

$ 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

The Phoenix version is 0.10.0. Am I doing something wrong, or is this a bug in Phoenix?

like image 714
ijt Avatar asked Feb 10 '23 17:02

ijt


1 Answers

This is fine. It is because you don't have hipe compiler enabled but you don't need one. Everything should work just fine™.

like image 88
José Valim Avatar answered Mar 29 '23 04:03

José Valim