我在尝试执行
./autogen.sh 在cppunit文件夹中的脚本
http://www.freedesktop.org/wiki/Software/cppunit
但是在一个混合shell(sh)中,我得到了下一个错误:
error: aclocal not foundaclocal m4脚本在
c:\MinGW\share\目录。
如何修正这个错误?
发布于 2016-06-09 17:01:24
我尝试从shell sh直接运行aclocal。
它还打印了另一条错误消息:
Can't locate Automake/Config.pm in @INC (@INC contains: /mingw/...疑问:Error while building Linphone for windows
因此,我通过命令挂载/mingw:
mount c:/mingw /mingw剧本现在起作用了。
发布于 2017-06-08 11:29:27
在编译libmodbus库时也有类似的问题(它使用相同的构建原则)。我在MSYS shell中输入了以下命令:
pacman -S msys/libtool
pacman -S msys/autoconf
pacman -S msys/automake-wrapper在那之后我执行了autogen.sh
发布于 2021-09-14 06:17:46
在ubuntu安装自动化libtool中,也发生在ubuntu上以克服这一问题。
apt-get install automake libtoolhttps://stackoverflow.com/questions/37725825
复制相似问题