0

リモート Linux サーバーがありますが、インターネットがなく、ファイアウォールの背後にあります。そのgccコンパイラはありません。そのため、インストールまたはコンパイルできません。

Linux サーバーには、ruby 1.9.3 でインストールされた rvm があります。

通常、gem をローカルの Mac OSX にインストールしてから、gem を Linux サーバーにコピーします (キャッシュ ディレクトリの xxxx.gem ファイルと ruby​​ の gem ディレクトリの xxx フォルダー)。これまでのところ、問題なく動作しています。新しいテストの一環として、sqlite3 gem をインストールし、その .gem ファイルを Linux サーバーにコピーして、Linux サーバーに gem install sqlite を実行しました。動作し、以下のエラーが発生しました

gem install sqlite3
Building native extensions.  This could take a while...
ERROR:  Error installing sqlite3:
    ERROR: Failed to build gem native extension.

    /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/bin/ruby extconf.rb
checking for sqlite3.h... *** extconf.rb failed ***
Could not create Makefile due to some reason, probably lack of
necessary libraries and/or headers.  Check the mkmf.log file for more
details.  You may need configuration options.

Provided configuration options:
    --with-opt-dir
    --with-opt-include
    --without-opt-include=${opt-dir}/include
    --with-opt-lib
    --without-opt-lib=${opt-dir}/lib
    --with-make-prog
    --without-make-prog
    --srcdir=.
    --curdir
    --ruby=/ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/bin/ruby
    --with-sqlite3-dir
    --without-sqlite3-dir
    --with-sqlite3-include
    --without-sqlite3-include=${sqlite3-dir}/include
    --with-sqlite3-lib
    --without-sqlite3-lib=${sqlite3-dir}/lib
    --enable-local
    --disable-local
/ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:381:in `try_do': The compiler failed to generate an executable file. (RuntimeError)
You have to install development tools first.
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:506:in `try_cpp'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:970:in `block in find_header'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:790:in `block in checking_for'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:284:in `block (2 levels) in postpone'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:284:in `block in postpone'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:254:in `open'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:280:in `postpone'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:789:in `checking_for'
    from /ngs/app/athenat/.rvm/rubies/ruby-1.9.3-p374/lib/ruby/1.9.1/mkmf.rb:969:in `find_header'
    from extconf.rb:34:in `<main>'


Gem files will remain installed in /ngs/app/athenat/.rvm/gems/ruby-1.9.3-p374@11.4.0-1/gems/sqlite3-1.3.8 for inspection.
 Results logged to /ngs/app/athenat/.rvm/gems/ruby-1.9.3-p374@11.4.0-1/gems/sqlite3-1.3.8/ext/sqlite3/gem_make.out

私がグーグルで検索したところ、多くの人が apt-get install libsqlite3-dev をインストールすることを提案しているのを見ました。リモート Linux サーバーでこれを行うことはできません。

誰でもこれを解決する方法を提案できますか。

以下の投稿に投稿されたいくつかの提案に従いましたが、うまくいきませんでした。 sqlite3-ruby のインストールに問題があります! sqlite3 gem のインストールに失敗する

4

1 に答える 1

0

コンパイラがなければ、この種のことはほぼ不可能になります。

OS X 用にコンパイルして、それらのバイナリを Linux に渡すことはできません。それらは同じ形式ではありません。

Vagrantを使用する場合など、VMWare Fusion または VirtualBox の仮想環境を使用して Linux ターゲットと互換性のある環境を作成し、ターゲット OS およびアーキテクチャ用にコンパイルして、それらのバイナリを出荷できる場合があります。リモート システムで使用できるライブラリとまったく同じライブラリにリンクする必要があるため、これは通常、最後の手段です。これを正しく行うには、多くの時間がかかる場合があります。

于 2013-09-11T15:55:42.033 に答える