#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下。