centos 6.7-linux上的erlang安装hipe问题

centos 6.7-linux上的erlang安装hipe问题,linux,centos,erlang,ejabberd,hipe,Linux,Centos,Erlang,Ejabberd,Hipe,我正在尝试安装ejabberd服务器。为此,我正在尝试安装ERL依赖项 wget http://www.erlang.org/download/otp_src_18.1.tar.gz tar -xzvf otp_src_18.1.tar.gz cd otp_src_18.1 ./configure make 使用上面的命令,在make中给我下面的错误,我不知道该如何解决。我也尝试过/configure--disabled hipe,但我仍然面临这个问题 === Entering applica

我正在尝试安装ejabberd服务器。为此,我正在尝试安装ERL依赖项

wget http://www.erlang.org/download/otp_src_18.1.tar.gz
tar -xzvf otp_src_18.1.tar.gz
cd otp_src_18.1
./configure
make
使用上面的命令,在
make
中给我下面的错误,我不知道该如何解决。我也尝试过
/configure--disabled hipe
,但我仍然面临这个问题

=== Entering application hipe
make[3]: Entering directory `/etc/ejabberd_downloads/otp_src_18.1/lib/hipe/misc'
 ERLC   ../ebin/hipe_consttab.beam

Crash dump is being written to: erl_crash.dump...done
Failed to create aux thread
/bin/sh: line 1:  6098 Aborted                 erlc -W +debug_info +warn_exported_vars +warn_missing_spec +warn_untyped_record -o../ebin hipe_consttab.erl
make[3]: *** [../ebin/hipe_consttab.beam] Error 134
make[3]: Leaving directory `/etc/ejabberd_downloads/otp_src_18.1/lib/hipe/misc'
make[2]: *** [opt] Error 2
make[2]: Leaving directory `/etc/ejabberd_downloads/otp_src_18.1/lib/hipe'
make[1]: *** [opt] Error 2
make[1]: Leaving directory `/etc/ejabberd_downloads/otp_src_18.1/lib'
make: *** [secondary_bootstrap_build] Error 2
erl_crash.dump顶行如下:

=erl_crash_dump:0.3
Thu Nov 19 00:27:29 2015
Slogan: Failed to create aux thread
System version: Erlang/OTP 18 [erts-7.1] [source-2882b0c] [64-bit] [smp:53:24] [async-threads:10] [hipe] [kernel-poll:false]
Compiled: Wed Sep 23 15:34:00 2015
Taints:
Atoms: 2005
Calling Thread: beam.smp
=scheduler:1

我是这个的新手。请帮帮我

配置为禁用hipe的选项是
--禁用hipe
(末尾没有
d
),不是吗?@EtanReisner,很抱歉,这是一个打字错误
/configure--disable hipe
之后,我又尝试了一次这个过程,你建议过,但又出现了同样的错误。如果你使用
--disable hipe
运行,我不希望生成hipe,这就是我感到惊讶的原因。我也不希望在转储的
系统版本
行中看到
[hipe]
ulimit-a
对运行此功能的用户来说意味着什么?
核心文件大小(块,-c)0数据段大小(kbytes,-d)无限调度优先级(-e)0文件大小(块,-f)无限挂起信号(-i)1029731最大锁定内存(kbytes,-l)64最大内存大小(KB,-m)无限打开文件(-n)1024管道大小(512字节,-p)8 POSIX消息队列(字节,-q)819200实时优先级(-r)0堆栈大小(KB,-s)10240 cpu时间(秒,-t)无限最大用户进程(-u)1029731虚拟内存(KB,-v)无限文件锁(-x)无限
有点难读(更新问题会更好),但这看起来基本上是合理的。如果手动运行
erlc-W+debug\u info+warn\u exported\u vars+warn\u missing\u spec+warn\u untyped\u record-o../ebin hipe\u consttab.erl
(这似乎是崩溃的命令),您会得到关于它如何/为什么失败的任何额外信息吗?配置为禁用hipe的选项是
--禁用hipe
(末尾没有
d
)不是吗?@EtanReisner,很抱歉这是个打字错误
/configure--disable hipe
之后,我又尝试了一次这个过程,你建议过,但又出现了同样的错误。如果你使用
--disable hipe
运行,我不希望生成hipe,这就是我感到惊讶的原因。我也不希望在转储的
系统版本
行中看到
[hipe]
ulimit-a
对运行此功能的用户来说意味着什么?
核心文件大小(块,-c)0数据段大小(kbytes,-d)无限调度优先级(-e)0文件大小(块,-f)无限挂起信号(-i)1029731最大锁定内存(kbytes,-l)64最大内存大小(KB,-m)无限打开文件(-n)1024管道大小(512字节,-p)8 POSIX消息队列(字节,-q)819200实时优先级(-r)0堆栈大小(KB,-s)10240 cpu时间(秒,-t)无限最大用户进程(-u)1029731虚拟内存(KB,-v)无限文件锁(-x)无限
有点难读(更新问题会更好),但这看起来基本上是合理的。如果手动运行
erlc-W+debug\u info+warn\u exported\u vars+warn\u missing\u spec+warn\u untyped\u record-o../ebin hipe\u consttab.erl
(这似乎是崩溃的命令),您是否获得了关于如何/为什么失败的额外信息?