快速干扰器安装问题

时间:2014-03-26 20:44:58

标签: ruby gem rvm

由于fast-stemmer的问题,我很难安装我想要的任何红宝石宝石。我把错误放在了下面。

Building native extensions.  This could take a while...
ERROR:  Error installing fast-stemmer:
ERROR: Failed to build gem native extension.

/System/Library/Frameworks/Ruby.framework/Versions/2.0/usr/bin/ruby extconf.rb
creating Makefile

make "DESTDIR=" clean

make "DESTDIR="
compiling porter.c
porter.c:359:27: warning: '&&' within '||' [-Wlogical-op-parentheses]
  if (a > 1 || a == 1 && !cvc(z, z->k - 1)) z->k--;
            ~~ ~~~~~~~^~~~~~~~~~~~~~~~~~~~
porter.c:359:27: note: place parentheses around the '&&' expression to silence this warning
  if (a > 1 || a == 1 && !cvc(z, z->k - 1)) z->k--;
                      ^
               (                          )
1 warning generated.
compiling porter_wrap.c
linking shared-object stemmer.bundle
clang: error: unknown argument: '-multiply_definedsuppress' [-Wunused-command-line-argument-hard-error-in-future]
clang: note: this will be a hard error (cannot be downgraded to a warning) in the future
make: *** [stemmer.bundle] Error 1

make failed, exit code 2

Gem files will remain installed in /Library/Ruby/Gems/2.0.0/gems/fast-stemmer-1.0.2 for inspection.
Results logged to /Library/Ruby/Gems/2.0.0/extensions/universal-darwin-13/2.0.0/fast-stemmer-1.0.2/gem_make.out

我尝试解决问题的一些方法包括:更新ruby gems,更新rvm,使用ruby 2.1.1,重新安装命令行工具。我是小牛队。

如果有人能帮助我,我将不胜感激!

1 个答案:

答案 0 :(得分:8)

所以,似乎我遇到的问题是由更新最后一个xCode引起的,后者又将clang更新为5.1,这反过来打破了许多未更新的ruby gem以反映clang中的重大变化5.1。我在Cloudspace blog上发现了这一切。

他们的解决方案(暂时 - 错误说他们将来会变成硬错误)是放下以下标志让编译器忽略这个问题:

ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future

例如:

sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future gem install librarian-chef

或捆绑:

sudo ARCHFLAGS=-Wno-error=unused-command-line-argument-hard-error-in-future bundle install