文章出处:http://blog.chinaunix.net/uid/30230931.html
作者联系方式:JonLee <>
tslib版本:
tslib-1.4
交叉编译器版本:
arm-linux-gcc 4.1.2
操作系统平台:
Linux -- ubuntu11.04
一 :安装编译所需程序
#apt-get install autoconf
#apt-get install automake
#apt-get install libtool
二 :配置编译
#tar xzvf tslib-1.4.tar.gz
#cd tslib
#./autogen.sh
#./configure --prefix=/home/pro/tslib CC=arm-linux-gcc --host=arm-linux --target=arm-linux
#make
出现以下错误:
ts_test.o: In function `main':
ts_test.c:(.text+0x208): undefined reference to `rpl_malloc'
fbutils.o: In function `open_framebuffer':
fbutils.c:(.text+0x598): undefined reference to `rpl_malloc'
collect2: ld returned 1 exit status
make[2]: *** [ts_test] 错误 1
make[2]:正在离开目录 `/home/smb/tslib/tests'
make[1]: *** [all-recursive] 错误 1
执行:
#echo "ac_cv_func_malloc_0_nonnull=yes" > mytslib.cache
#./configure --prefix=/home/pro/tslib CC=arm-linux-gcc --host=arm-linux --target=arm-linux
-cache-file=mytslib.cache
#make
三 :安装
#make install
安装完成后,把tslib目录下的所有内容拷贝到根文件系统的/usr/local/tslib目录下,修改tslib/etc/ts.conf文件,将第二行module_raw input的注释去掉。
将tslib/bin/ts_calibrate拷贝到/usr/bin下,这个就是触摸屏校正程序,运行时,屏幕上会依次出现5个点,点击后会在/etc/目录下生成pointercal文件,qtopia就会根据这个文件进行校正。
备注:./configure --prefix=/home/pro/tslib CC=arm-linux-gcc --host=arm-linux --target=arm-linux ac_cv_func_malloc_0_nonnull=yes 也能解决
s_test.o: In function `main':
ts_test.c:(.text+0x208): undefined reference to `rpl_malloc'
fbutils.o: In function `open_framebuffer':
fbutils.c:(.text+0x598): undefined reference to `rpl_malloc'
错误