在 Fedora 20 上安装 RubyRacer gem 错误



我正在做一个项目,需要therubyracer。当我进行捆绑安装时,当捆绑器尝试安装红宝石时,我收到以下错误消息。

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.
    /usr/bin/ruby extconf.rb 
checking for main() in -lpthread... yes
checking for v8.h... yes
creating Makefile
make "DESTDIR="
g++ -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -D_FILE_OFFSET_BITS=64  -Wall -g -rdynamic -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -march=i686 -mtune=atom -fasynchronous-unwind-tables -m32 -o init.o -c init.cc
g++ -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -D_FILE_OFFSET_BITS=64  -Wall -g -rdynamic -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -march=i686 -mtune=atom -fasynchronous-unwind-tables -m32 -o signature.o -c signature.cc
g++ -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -D_FILE_OFFSET_BITS=64  -Wall -g -rdynamic -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -march=i686 -mtune=atom -fasynchronous-unwind-tables -m32 -o exception.o -c exception.cc
g++ -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -D_FILE_OFFSET_BITS=64  -Wall -g -rdynamic -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -march=i686 -mtune=atom -fasynchronous-unwind-tables -m32 -o primitive.o -c primitive.cc
g++ -I. -I/usr/include -I/usr/include/ruby/backward -I/usr/include -I. -D_FILE_OFFSET_BITS=64  -Wall -g -rdynamic -fPIC -O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -march=i686 -mtune=atom -fasynchronous-unwind-tables -m32 -o context.o -c context.cc
In file included from context.cc:1:0:
context.cc: In static member function ‘static VALUE rr::Context::SetEmbedderData(VALUE, VALUE, VALUE)’:
context.cc:81:23: error: ‘class v8::Context’ has no member named ‘SetEmbedderData’
   Void(Context(self)->SetEmbedderData(NUM2INT(index), Value(data)));
                       ^
rr.h:33:20: note: in definition of macro ‘Void’
 #define Void(expr) expr; return Qnil;
                    ^
context.cc: In static member function ‘static VALUE rr::Context::GetEmbedderData(VALUE, VALUE)’:
context.cc:85:23: error: ‘class v8::Context’ has no member named ‘GetEmbedderData’
   Void(Context(self)->GetEmbedderData(NUM2INT(index)));
                       ^
rr.h:33:20: note: in definition of macro ‘Void’
 #define Void(expr) expr; return Qnil;
                    ^
make: *** [context.o] Error 1

Gem files will remain installed in /home/anupam/.gem/ruby/gems/therubyracer-0.12.1 for inspection.
Results logged to /home/anupam/.gem/ruby/gems/therubyracer-0.12.1/ext/v8/gem_make.out
An error occurred while installing therubyracer (0.12.1), and Bundler cannot continue.
Make sure that `gem install therubyracer -v '0.12.1'` succeeds before bundling.

当我运行 gem 安装 therubyracer -v '0.12.1' 或没有版本时,它仍然失败。

我是 ruby 的新手,所以我真的不明白发生了什么或为什么它会失败。

非常感谢对此

的任何帮助。

我在 Fedora 24 x64 上遇到了同样的问题,sudo dnf -y install gcc-c++解决了我的问题

我删除了所有宝石。

卸载的红宝石

重新安装的红宝石红宝石开发

安装了 ruby 和 ruby-devel 并使用 yum NOT gem 安装 therubyracer 和 libv8。

然后我运行了捆绑安装,gem 使用了 yum 安装的已安装的 gem。

感谢上帝的软呢帽维护者!你们真棒

我知道

这听起来很愚蠢,但我遇到了确切的问题,似乎我缺少 gcc-c++ 包。以为已经有了他们。 yum install gcc-c++做到了

最新更新