手把手教你交叉编译tslib1.4(目标平台S3C2410)

首先进入 tslib-1.4.tar.bz2压缩包所在目录解压,执行命令:

#tar xjvf tslib-1.4.tar.bz2

进入解压后的目录:cd  tslib-1.4  修改脚本:

#gedit build.sh

文件内容修改为:

#/bin/sh

export CC=arm-linux-gcc

./autogen.sh

echo "ac_cv_func_malloc_0_nonnull=yes" >arm-linux.cache 

./configure --host=arm-linux --cache-file=arm-linux.cache -prefix=/usr/local/tslib

make

make install

保存退出,并执行命令:./build.sh

执行完成后就将tslib交叉编译并安装到了/usr/local/tslib下。

你可能感兴趣的:(c,脚本,平台)