13

libmagic.so.1ファイルを探しているようです。私はそのファイルを持っています。/ usr/lib64にあります。このインストールをrootユーザーとして実行していません。

私はrvmとBundlerも使用しています。これは、Gemfileのruby-filemagic行に到達したときの「bundle」コマンドの結果です。

[server@mine ext]$ ruby extconf.rb --with-magiclib
checking for magic_open() in -ltrue... no
*** ERROR: missing required library to compile this module
*** 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.

アップデート:

mkmf.logの結果は次のとおりです。

have_library: checking for magic_open() in -ltrue... -------------------- no

"gcc -o conftest -I. -I/usr/local/rvm/rubies/ruby-1.8.7-p358/lib/ruby/1.8/x86_64-linux -I.    -g -O2  -fPIC   conftest.c  -L. -L/usr/local/rvm/rubies/ruby-1.8.7-p358/lib -Wl,-R/usr/local/rvm/rubies/ruby-1.8.7-p358/lib -L.  -rdynamic -Wl,-export-dynamic     -lruby-static -ltrue  -lrt -ldl -lcrypt -lm   -lc"
conftest.c: In function ‘t’:
conftest.c:3: error: ‘magic_open’ undeclared (first use in this function)
conftest.c:3: error: (Each undeclared identifier is reported only once
conftest.c:3: error: for each function it appears in.)
checked program was:
/* begin */
1: /*top*/
2: int main() { return 0; }
3: int t() { void ((*volatile p)()); p = (void ((*)()))magic_open; return 0; }
/* end */

"gcc -o conftest -I. -I/usr/local/rvm/rubies/ruby-1.8.7-p358/lib/ruby/1.8/x86_64-linux -I.    -g -O2  -fPIC   conftest.c  -L. -L/usr/local/rvm/rubies/ruby-1.8.7-p358/lib -Wl,-R/usr/local/rvm/rubies/ruby-1.8.7-p358/lib -L.  -rdynamic -Wl,-export-dynamic     -lruby-static -ltrue  -lrt -ldl -lcrypt -lm   -lc"
/usr/bin/ld: cannot find -ltrue
collect2: ld returned 1 exit status
checked program was:
/* begin */
1: /*top*/
2: int main() { return 0; }
3: int t() { magic_open(); return 0; }
/* end */

私はこれを機能させるために何をすべきか理解できません。

4

4 に答える 4

19

Ubuntu 12.04 でも同じ問題がありました。libmagic-dev次のコマンドを使用してパッケージをインストールしました。

sudo apt-get install libmagic-dev
于 2012-05-05T16:16:49.377 に答える
10

Mac では、homebrew を使用します。

sudo brew install libmagic
于 2013-01-02T09:41:57.803 に答える
8

私はする必要がありました:

yum install file-devel

これには、filemagic ruby​​ gem をコンパイルするために必要な libmagic ヘッダー ファイルが含まれているようです。その後、チャンピオンのように機能しました。

于 2012-04-30T15:47:19.307 に答える
1

OpenSuse 11.3 でも同じ問題が発生しました。これは役に立ちました:

zypper install file-devel
于 2012-06-01T09:04:35.233 に答える