交叉编译ARM的zlib

时间:2018-12-21 13:03:45

标签: gcc makefile compiler-errors arm zlib

我尝试为arm-poky-linux-gnueabi交叉编译zlib,但是启动make时出现错误:

...:~/zlib-1.2.11$ AR=$HOST-ar CC=$HOST-gcc RANLIB=$HOST-ranlib ./configure --prefix=$HOME/zlibARM 
Checking for shared library support... 
Building shared library libz.so.1.2.11 with arm-poky-linux-gnueabi-gcc. 
Checking for size_t... Yes. 
Checking for off64_t... Yes. 
Checking for fseeko... Yes. 
Checking for strerror... Yes. 
Checking for unistd.h... Yes. 
Checking for stdarg.h... Yes. 
Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf(). 
Checking for vsnprintf() in stdio.h... Yes. 
Checking for return value of vsnprintf()... Yes. 
Checking for attribute(visibility) support... Yes.

...:~/zlib-1.2.11$ make
arm-poky-linux-gnueabi-gcc -O3 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN -I. -c -o example.o test/example.c
make: execvp: arm-poky-linux-gnueabi-gcc : Trop de niveaux de liens symboliques
Makefile:147: recipe for target 'example.o' failed
make: *** [example.o] Error 127

你能帮我吗?

1 个答案:

答案 0 :(得分:0)

我知道这篇文章已经有7个月的历史了,但是我能够使用以下configure命令成功为ARM(在MacOS上)交叉编译zlib:

CHOST=arm \
CC=<PATH_TO_CROSS_GCC> \
AR=<PATH_TO_CROSS_AR> \
RANLIB=<PATH_TO_CROSS_RANLIB> \
./configure \
--prefix=<INSTALL_PATH>

PATH_TO_CROSS_GCCPATH_TO_CROSS_ARPATH_TO_CROSS_GCC指向交叉编译工具的位置(在我的情况下,我使用crosstool-NG)。

最终使它对我有用的是指定CHOST=arm,这导致它实际上使用了指定的ar

希望这可以帮助某人。