3

我正在尝试安装 Jekyll,但我一直卡在这个错误上。这是我尝试安装它的输出

clinch@clinch-VirtualBox:~$ gem install jekyllBuilding native extensions.  This could take a while...
ERROR:  Error installing jekyll:
    ERROR: Failed to build gem native extension.

        /home/clinch/.rvm/rubies/ruby-1.9.3-p392/bin/ruby extconf.rb
creating Makefile

make
compiling porter.c
cc1: unrecognized option `-Wextra'
cc1: unrecognized option `-Wno-missing-field-initializers'
cc1: unrecognized option `-Wdeclaration-after-statement'
make: *** [porter.o] Error 1


Gem files will remain installed in /home/clinch/.rvm/gems/ruby-1.9.3-p392/gems/fast-stemmer-1.0.2 for inspection.
Results logged to /home/clinch/.rvm/gems/ruby-1.9.3-p392/gems/fast-stemmer-1.0.2/ext/gem_make.out
clinch@clinch-VirtualBox:~$ gcc -v
Using built-in specs.
Configured with: ./configure --target=mips-dec-ultrix42 --program-prefix=mips- --with-gnu-as --with-gnu-ld --enable-obsolete
Thread model: single
gcc version 3.2.2
clinch@clinch-VirtualBox:~$ ruby -v
ruby 1.9.3p392 (2013-02-22 revision 39386) [x86_64-linux]
clinch@clinch-VirtualBox:~$ uname -a
Linux clinch-VirtualBox 3.2.0-37-generic #58-Ubuntu SMP Thu Jan 24 15:28:10 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux

我已经安装了 ruby​​1.9.1-dev 包。我尝试使用 gcc 4.6 进行编译,而不是我粘贴的输出中显示的 3.2.2。我也不知道本机扩展错误是否使 gcc 死亡。我还从头开始重建了 ruby​​。

也许我应该尝试另一个 Ruby 版本?虽然我知道 jekyll 支持 1.9.3。

任何帮助将不胜感激。

4

1 回答 1

1

尝试从Ruby 或 Ruby and Rails 命令提示符而不是任何其他命令提示符安装 Jekyll

我根本不是专家,所以我建议的解决方案只是基于我下面的经验的“猜测”。

我使用的是 Windows 7。虽然您使用的是 Ubuntu 而不是 Windows 7,但此解决方案可能适用于几乎所有遇到相同问题的人。

首先,我从RailsInstaller安装了 Ruby 。然后,我想安装 Jekyll。我尝试从Cygwin安装 Jekyll 。但是,我收到了以下错误(虽然它与提问者的错误不同,但我认为它足够相似):

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

        /usr/bin/ruby.exe extconf.rb
creating Makefile

make
gcc -I. -I/usr/include/ruby-1.9.1/x86_64-cygwin -I/usr/include/ruby-1.9.1/ruby/backward -I/usr/include/ruby-1.9.1 -I.   -ggdb -O2 -pipe   -fno-strict-aliasing  -Wall   -o posix-spawn.o -c posix-spawn.c
posix-spawn.c:9:19: fatal error: spawn.h: No such file or directory
 #include <spawn.h>
                   ^
compilation terminated.
Makefile:206: recipe for target `posix-spawn.o' failed
make: *** [posix-spawn.o] Error 1


Gem files will remain installed in /usr/lib/ruby/gems/1.9.1/gems/posix-spawn-0.3.6 for inspection.
Results logged to /usr/lib/ruby/gems/1.9.1/gems/posix-spawn-0.3.6/ext/gem_make.out

但是,当我尝试使用 Ruby 和 Rails(即 Ruby 命令提示符)从命令提示符安装 Jekyll 时,Jekyll 安装成功。

为了以防万一,我在尝试从 Ruby 和 Rails 命令提示符安装 Jekyll 之前(成功地)删除了系统变量 {Variable:Comspec,Value:C:\Windows\system32\cmd.exe}。

于 2013-08-21T05:50:25.683 回答