前面检查arm-linux-gcc都通过了,怎么还说没有找到编译器呢?花了点时间看configure的脚本,太复杂了,又结合configure.ac看了一下。原来是要设置config_TARGET_CC和config_BUILD_CC两个环境变量。config_TARGET_CC是交叉编译器,config_BUILD_CC是主机编译器。重来:
[root@linux sqlite-3.3.4]# export config_BUILD_CC=gcc
[root@linux sqlite-3.3.4]# export config_TARGET_CC=arm-linux-gcc
[root@linux sqlite-3.3.4]# ./configure --host=$ARCH-linux --prefix=$ROOTFS_DIR/usr
出现了如下错误:
checking for /usr/include/readline.h... configure: error: cannot check for file existence when cross compiling
readline我们已经编译过了,readline.h是肯定存在,没有必要检查。还是施展我们欺骗***吧,在cache文件里设置ac_cv_header_readline_h=yes,骗过configure脚本:
[root@linux sqlite-3.3.4]# echo ac_cv_header_readline_h=yes >$ARCH-linux.cache
[root@linux sqlite-3.3.4]#./configure --host=$ARCH-linux --prefix=$ROOTFS_DIR/usr --cache-file=$ARCH-linux.cache
这回配置成功了,编译:
[root@linux sqlite-3.3.4]# make && make install
有的机器上会出现下列错误:
libtool: compile: unable to infer tagged configuration
libtool: compile: specify a tag with `--tag'
这时检查一下libtool里的CC变量是否设置为arm-linux-gcc,如果不是,可以手工改过来,或者设置环境变量lt_compiler=arm-linux-gcc,重新配置一下。
OK,经过几番周折,终于编译过去了。
3. 构建处方
sqlite.mk
SQLITE_DIR="sqlite-3.3.4"
all: clean config build
config:
@cd $(SQLITE_DIR) && \
export config_BUILD_CC=gcc && \
export config_TARGET_CC=arm-linux-gcc && \
echo ac_cv_header_readline_h=yes >$$ARCH-linux.cache && \
./configure --host=$$ARCH-linux --prefix=$$ROOTFS_DIR/usr --cache-file=$$ARCH-linux.cache && \
echo "config done"
build:
@cd $(SQLITE_DIR) && \
make && make install && \
echo "build done"
clean:
@cd $(SQLITE_DIR) && \
if [ -e Makefile ]; then make distclean; fi && \
echo "clean done"
[编译glib]
1. 基本信息:
软件名称
glib
功能简述
Glib是GNOME的一个基础库,提供基本的容器、算法、对象系统、OSAPI的适配器等。
下载地址
软件版本
glib-2.8.0.tar.gz
依赖关系
默认
前置条件
源文件位置:$(WORK_DIR)/ glib-2.8.0
2. 过程分析
下载的稳定版本,configure已经存在,直接进行配置:
[root@linux glib-2.8.0]# ./configure --host=$ARCH-linux --prefix=$ROOTFS_DIR/usr
出现了如下错误:
checking for growing stack pointer... configure: error: cannot run test program while cross compiling