0

我正在开发一个需要此处提供的 libsuinput 的项目

https://github.com/tuomasjjrasanen/libsuinput

我已经下载了它,但是当我按照自述文件中的说明进行操作时

只需运行以下命令:

./configure && make && make install

我收到以下错误

bash: ./configure: No such file or directory

说明再简单不过了,但它只是不起作用。是我遗漏了什么还是模块与最新版本的 Raspberry Pi 不兼容?

4

1 回答 1

0

您需要先运行./autogen.sh- 它会调用 autoreconf 来创建configure脚本。

如果你得到:

pi@raspberrypi:~/libsuinput $ ./autogen.sh
aclocal: warning: couldn't open directory 'm4': No such file or directory
configure.ac:9: error: possibly undefined macro: AC_PROG_LIBTOOL
      If this token and others are legitimate, please use m4_pattern_allow.
      See the Autoconf documentation.
autoreconf: /usr/bin/autoconf failed with exit status: 1

安装库工具:

sudo apt-get -y install libtool
于 2020-12-24T15:33:49.623 回答