8

Ruby 1.9.3 と DevKit を使用して Windows を使用しています (Win 7 64 ビットではすべて 32 ビット)。今、レールをインストールしようとしていますが、バンドルからエラーが発生します。実行しようとすると(どのバンドルが不平を言っているのか)

 gem install json

次のエラー メッセージが表示されます。

D:\RubyTest>gem install json
Temporarily enhancing PATH to include DevKit...
Building native extensions.  This could take a while...
ERROR:  Error installing json:
        ERROR: Failed to build gem native extension.

        D:/Ruby193/bin/ruby.exe extconf.rb
creating Makefile

make
generating generator-i386-mingw32.def
compiling generator.c
In file included from d:/Ruby193/include/ruby-1.9.1/ruby/ruby.h:1381:0,
                 from d:/Ruby193/include/ruby-1.9.1/ruby.h:32,
                 from ../fbuffer/fbuffer.h:5,
                 from generator.c:1:
d:/Ruby193/include/ruby-1.9.1/ruby/missing.h:41:8: error: redefinition of 'struc
t timespec'
In file included from d:\ruby193\mingw\bin\../lib/gcc/i686-w64-mingw32/4.7.2/../
../../../i686-w64-mingw32/include/process.h:12:0,
                 from d:/Ruby193/include/ruby-1.9.1/ruby/win32.h:62,
                 from d:/Ruby193/include/ruby-1.9.1/ruby/defines.h:223,
                 from d:/Ruby193/include/ruby-1.9.1/ruby/ruby.h:67,
                 from d:/Ruby193/include/ruby-1.9.1/ruby.h:32,
                 from ../fbuffer/fbuffer.h:5,
                 from generator.c:1:
d:\ruby193\mingw\bin\../lib/gcc/i686-w64-mingw32/4.7.2/../../../../i686-w64-ming
w32/include/sys/types.h:89:8: note: originally defined here
In file included from d:/Ruby193/include/ruby-1.9.1/ruby/ruby.h:1381:0,
                 from d:/Ruby193/include/ruby-1.9.1/ruby.h:32,
                 from ../fbuffer/fbuffer.h:5,
                 from generator.c:1:
d:/Ruby193/include/ruby-1.9.1/ruby/missing.h:48:8: error: redefinition of 'struc
t timezone'
In file included from d:/Ruby193/include/ruby-1.9.1/ruby/win32.h:63:0,
                 from d:/Ruby193/include/ruby-1.9.1/ruby/defines.h:223,
                 from d:/Ruby193/include/ruby-1.9.1/ruby/ruby.h:67,
                 from d:/Ruby193/include/ruby-1.9.1/ruby.h:32,
                 from ../fbuffer/fbuffer.h:5,
                 from generator.c:1:
d:\ruby193\mingw\bin\../lib/gcc/i686-w64-mingw32/4.7.2/../../../../i686-w64-ming
w32/include/time.h:260:8: note: originally defined here
make: *** [generator.o] Error 1


Gem files will remain installed in D:/Ruby193/lib/ruby/gems/1.9.1/gems/json-1.7.
7 for inspection.
Results logged to D:/Ruby193/lib/ruby/gems/1.9.1/gems/json-1.7.7/ext/json/ext/ge
nerator/gem_make.out

何か案が?

4

2 に答える 2

22

Ruby 1.9.3 は、 RubyInstaller のダウンロード ページDevKit-tdm-32-4.5.2-20111229-1559-sfx.exeから入手できるDevKit である GCC 4.5.2 でコンパイルされました。

RubyInstaller の発表に示されているように、Ruby 2.0.0 リリースとのみ互換性のある新しい DevKit をダウンロードしました。

明確にするために:

  • ルビー 1.8.7:tdm-32-4.5.2
  • ルビー 1.9.2:tdm-32-4.5.2
  • ルビー 1.9.3:tdm-32-4.5.2
  • Ruby 2.0.0: mingw64-32-4.7.2(および 64 ビット Ruby の場合は 64 ビット バージョン)

これについて、RubyInstaller のダウンロード ページに説明を追加しました。

それが役立つことを願っています

于 2013-02-27T21:46:14.440 に答える
0

Ruby バージョンのインクルードディレクトリにある「win32.h」を開くことができます。

次に、「clock_gettime」「clock_getres」関数が宣言されている行をコメントアウトします。

于 2016-08-06T21:57:17.133 に答える