解压安装tslib
# tar -zxvf tslib-1.4.tar.gz
# cd tslib
# ./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 ac_cv_func_malloc_0_nonnull=yes
# make
# make install
这里需要注意的是ac_cv_func_malloc_0_nonnull=yes ,不加这句的话会出现编译错误,echo “ac_cv_func_malloc_0 _nonnull=yes”>arm-linux.cache 也是为了解决这个错误,后来有次发现echo 不起作用,便把参数直接加入了./configure
错误如下:
ts_test.o: In function main':
rpl_malloc’
ts_test.c:(.text+0x1d4): undefined reference to
fbutils.o: In function open_framebuffer':
rpl_malloc’
fbutils.c:(.text+0x9f4): undefined reference to
collect2: ld returned 1 exit status
