3

这是一个真正的麻烦。这是斗争的输出:

checking for iconv() in iconv.h... no
checking for iconv() in -liconv... no

我的命令行是:

sudo gem install iconv

“哪个iconv”产生:

/opt/local/bin/iconv

我什至不知道那些“检查”行是什么意思。为什么在地球上 iconv() 不会出现在 iconv.h 中?对我来说毫无意义。iconv.h 位于 /opt/local/include 中。

编辑:

这是 mkmf.log 的输出:

    have_func: checking for iconv() in iconv.h... -------------------- no

    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -I/opt/local/bin/include  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L/opt/local/bin/lib -L. -arch i386 -arch x86_64      -lruby  -lpthread -ldl  "
    Undefined symbols for architecture i386:
      "_libiconv", referenced from:
          _libiconv$non_lazy_ptr in ccF0PUYQ.o
    ld: symbol(s) not found for architecture i386
    collect2: ld returned 1 exit status
    Undefined symbols for architecture x86_64:
      "_libiconv", referenced from:
          _t in cc0k5gYm.o
    ld: symbol(s) not found for architecture x86_64
    collect2: ld returned 1 exit status
    lipo: can't open input file: /var/tmp//cc3Rrwkf.out (No such file or directory)
    checked program was:
    /* begin */
    1: #include <iconv.h>
    2: 
    3: /*top*/
    4: int main() { return 0; }
    5: int t() { void ((*volatile p)()); p = (void ((*)()))iconv; return 0; }
    /* end */

    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -I/opt/local/bin/include  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L/opt/local/bin/lib -L. -arch i386 -arch x86_64      -lruby  -lpthread -ldl  "
    conftest.c: In function 't':
    conftest.c:5: error: too few arguments to function 'libiconv'
    conftest.c: In function 't':
    conftest.c:5: error: too few arguments to function 'libiconv'
    lipo: can't figure out the architecture type of: /var/tmp//ccfQKL4Y.out
    checked program was:
    /* begin */
    1: #include <iconv.h>
    2: 
    3: /*top*/
    4: int main() { return 0; }
    5: int t() { iconv(); return 0; }
    /* end */

    --------------------

    have_library: checking for iconv() in -liconv... -------------------- no

    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -I/opt/local/bin/include  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L/opt/local/bin/lib -L. -arch i386 -arch x86_64      -lruby -liconv  -lpthread -ldl  "
    Undefined symbols for architecture x86_64:
      "_libiconv", referenced from:
          _t in ccorhTF7.o
    ld: symbol(s) not found for architecture x86_64
    collect2: ld returned 1 exit status
    lipo: can't open input file: /var/tmp//ccqa9vmd.out (No such file or directory)
    checked program was:
    /* begin */
    1: #include <iconv.h>
    2: 
    3: /*top*/
    4: int main() { return 0; }
    5: int t() { void ((*volatile p)()); p = (void ((*)()))iconv; return 0; }
    /* end */

    "gcc -o conftest -I. -I/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/universal-darwin10.0 -I. -I/opt/local/bin/include  -D_XOPEN_SOURCE -D_DARWIN_C_SOURCE   -arch i386 -arch x86_64 -g -Os -pipe -fno-common -DENABLE_DTRACE  -fno-common  -pipe -fno-common   conftest.c  -L. -L/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib -L/opt/local/bin/lib -L. -arch i386 -arch x86_64      -lruby -liconv  -lpthread -ldl  "
    conftest.c: In function 't':
    conftest.c:5: error: too few arguments to function 'libiconv'
    conftest.c: In function 't':
    conftest.c:5: error: too few arguments to function 'libiconv'
    lipo: can't figure out the architecture type of: /var/tmp//cc2UrCWJ.out
    checked program was:
    /* begin */
    1: #include <iconv.h>
    2: 
    3: /*top*/
    4: int main() { return 0; }
    5: int t() { iconv(); return 0; }
    /* end */

    --------------------
4

2 回答 2

1

在 OS X 10.9.1 上,我也遇到了这个错误。我的解决方案是重新安装 libiconv,它是用 homebrew 安装的。

于 2014-02-10T17:59:09.647 回答
0

这是最奇怪的事情。当我进入 gem 目录并执行以下操作时:

ruby extconf.rb

和:

make

和:

make install

然后:

须藤宝石安装图标v

有用!我只是不知道为什么它有效。

于 2011-02-25T04:41:09.700 回答