1

こちらの指示に従って、MIPS システム用に GLib 2.37.0 をクロスコンパイルしようとしています。次の内容の mips.cache ファイルがあります。

glib_cv_stack_grows=no
glib_cv_uscore=no
ac_cv_func_posix_getpwuid_r=no
ac_cv_func_posix_getgrgid_r=no

次のコマンド ラインで構成スクリプトを呼び出しています。

./configure --cache-file=mips.cache --host=mips-linux CCFLAGS=-I/opt/toolchain/build_mips/staging_dir/usr/include LDFLAGS=-L/opt/toolchain/build_mips/staging_dir/usr/lib

残念ながら、次のエラーが表示されます。

configure: error: *** No iconv() implementation found in C library or libiconv

それが役立つ場合、出力全体は次のようになります。

checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking how to create a ustar tar archive... gnutar
checking whether to enable maintainer-specific portions of Makefiles... yes
checking whether make supports nested variables... (cached) yes
checking for mips-linux-gcc... mips-linux-gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... yes
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether mips-linux-gcc accepts -g... yes
checking for mips-linux-gcc option to accept ISO C89... none needed
checking for style of include used by make... GNU
checking dependency style of mips-linux-gcc... gcc3
checking how to run the C preprocessor... mips-linux-gcc -E
checking build system type... i686-pc-linux-gnu
checking host system type... mips-unknown-linux-gnu
checking for the BeOS... no
checking for Win32... no
checking for the Android... no
checking for Mac OS X Carbon support... no
checking for Mac OS X Cocoa support... no
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking whether we are using the GNU C Library 2.1 or newer... yes
checking whether to enable garbage collector friendliness... no
checking whether to disable memory pools... no
checking for mips-linux-c++... mips-linux-c++
checking whether we are using the GNU C++ compiler... yes
checking whether mips-linux-c++ accepts -g... yes
checking dependency style of mips-linux-c++... gcc3
checking whether mips-linux-gcc and cc understand -c and -o together... yes
checking for special C compiler options needed for large files... no
checking for _FILE_OFFSET_BITS value needed for large files... 64
checking for mips-linux-pkg-config... no
checking for pkg-config... /usr/bin/pkg-config
configure: WARNING: using cross tools not prefixed with host triplet
checking pkg-config is at least version 0.16... yes
checking for gawk... (cached) gawk
checking for perl5... no
checking for perl... perl
checking for indent... no
checking for perl... /usr/bin/perl
checking for a Python interpreter with version >= 2.5... python
checking for python... /usr/bin/python
checking for python version... 2.7
checking for python platform... linux2
checking for python script directory... ${prefix}/lib/python2.7/dist-packages
checking for python extension module directory... ${exec_prefix}/lib/python2.7/dist-packages
checking for iconv_open... no
configure: error: *** No iconv() implementation found in C library or libiconv

--with-libiconv=noオプションを指定して configure スクリプトを呼び出してみましたが、結果は同じです。他のソースから mips.cache ファイルが優れていることは知っていますが、configure スクリプトを機能させるための魔法については知りません。また、このツールチェーンを使用して、他のアプリケーションをクロスコンパイルしました。ここで何が欠けていますか?

ありがとう!

4

1 に答える 1

0

これは、libiconv が正しいコンパイラ (この場合は mips 用のコンパイラ) でビルドされないか、glib の構成中に指定されたパスにライブラリ (.so) が存在しないためです。

于 2013-07-29T11:04:30.457 に答える