1

Mac ではバンドル インストールを問題なく実行できますが、Ubuntu ビルド サーバーで実行すると、次の出力で失敗します。

Gem::Installer::ExtensionBuildError: ERROR: Failed to build gem native extension.

/var/lib/jenkins/.rvm/rubies/ruby-1.9.3-p385-dev/bin/ruby extconf.rb 
creating Makefile

make
compiling native.c
native.c: In function ‘birch_edge_initialize’:
native.c:42:8: warning: unused variable ‘direction’ [-Wunused-variable]
native.c:41:8: warning: unused variable ‘directed’ [-Wunused-variable]
native.c:40:8: warning: unused variable ‘node_b’ [-Wunused-variable]
native.c:39:8: warning: unused variable ‘node_a’ [-Wunused-variable]
native.c:58:1: warning: control reaches end of non-void function [-Wreturn-type]
linking shared-object birch/native.so

make install
/usr/bin/install -c -m 0755 native.so /var/lib/jenkins/jobs
/usr/bin/install -c -m 0755 native.so .
/usr/bin/install: 'native.so' and './native.so' are the same file
make: *** [-] Error 1

私はRVM、ルビーバージョンruby-1.9.3-p385-devを使用しています。

この問題は 1 つの gem に固有のものでもありません。birch を削除すると、ネイティブ拡張を持つ bson で同じタイプのエラーが発生します。

4

1 に答える 1

1

It seems this was caused by a bad RVM install. I initially installed rvm using apt (bad, bad idea), and it looks like the purge didn't clean everything up. Setting up a clean ec2 instance with a clean rvm install fixed it

于 2013-02-21T22:21:35.303 に答える