一、问题描述。
Ubuntu下对tslib源码进行交叉编译出现报错,如下:
ms@ubuntu:~/.../tslib$ ./tslib.sh
./autogen.sh: 4: autoreconf: not found
./tslib.sh: 5: ./configure: not found
make: *** No targets specified and no makefile found. Stop.
make: Nothing to be done for 'install'.
ms@ubuntu:~/.../tslib$
二、问题分析。
缺少相应的工具。
三、解决方案。
进行相关程序的安装。
sudo apt-get install autoconf -y
sudo apt-get install automake -y
sudo apt-get install libtool -y
sudo apt-get install gcc -y
sudo apt-get install g++ -y