"use of opcode 153; this emulator supports only up to 152"
"use of opcode 153; this emulator supports only up to 152"
我是 erlang 和 cowboy 的新手。
我正在尝试 https://ninenines.eu/docs/en/cowboy/2.0/guide/getting_started/ 中的非常简单的示例
但我已经卡住了。完成 'make run' 我得到
mess@server [erlang_test]# /usr/local/bin/make run
DEPEND erlang_test.d
ERLC erlang_test_app.erl erlang_test_sup.erl
APP erlang_test
GEN /home/mess/erlang_test/.erlang.mk/relx
=ERROR REPORT==== 26-Oct-2016::01:03:06 ===
Loading of /home/mess/erlang_test/.erlang.mk/relx/relx/ebin/relx.beam failed: badfile
escript: exception error: undefined function relx:main/1
in function escript:run/2
in call from escript:start/1
in call from init:start_it/1
in call from init:start_em/1
=ERROR REPORT==== 26-Oct-2016::01:03:06 ===
beam/beam_load.c(1365): Error loading module relx:
use of opcode 153; this emulator supports only up to 152
make: *** [erlang.mk:6350: relx-rel] Error 127
知道发生了什么事吗?
我只看到一个文件 .erlang.mk/relx 但没有更深的 relax.beam 目录。
谢谢!
错误 use of opcode 153; this emulator supports only up to 152
表示您有一个 relx.beam
文件是用 Erlang/OTP R15 或更高版本编译的,但您正试图在 R14 中 运行或更早。升级到较新的 Erlang 版本,或者如果您已经有较新的版本,找出旧 Erlang 的隐藏位置并将其删除。
我是 erlang 和 cowboy 的新手。
我正在尝试 https://ninenines.eu/docs/en/cowboy/2.0/guide/getting_started/ 中的非常简单的示例 但我已经卡住了。完成 'make run' 我得到
mess@server [erlang_test]# /usr/local/bin/make run
DEPEND erlang_test.d
ERLC erlang_test_app.erl erlang_test_sup.erl
APP erlang_test
GEN /home/mess/erlang_test/.erlang.mk/relx
=ERROR REPORT==== 26-Oct-2016::01:03:06 ===
Loading of /home/mess/erlang_test/.erlang.mk/relx/relx/ebin/relx.beam failed: badfile
escript: exception error: undefined function relx:main/1
in function escript:run/2
in call from escript:start/1
in call from init:start_it/1
in call from init:start_em/1
=ERROR REPORT==== 26-Oct-2016::01:03:06 ===
beam/beam_load.c(1365): Error loading module relx:
use of opcode 153; this emulator supports only up to 152
make: *** [erlang.mk:6350: relx-rel] Error 127
知道发生了什么事吗? 我只看到一个文件 .erlang.mk/relx 但没有更深的 relax.beam 目录。
谢谢!
错误 use of opcode 153; this emulator supports only up to 152
表示您有一个 relx.beam
文件是用 Erlang/OTP R15 或更高版本编译的,但您正试图在 R14 中 运行或更早。升级到较新的 Erlang 版本,或者如果您已经有较新的版本,找出旧 Erlang 的隐藏位置并将其删除。