我试着在我的mac上安装val研,但是当我执行./autogen.sh时,得到以下错误:
running: aclocal
./autogen.sh: line 6: aclocal: command not found
error: while running 'aclocal'有人知道怎么解决这个问题吗?
发布于 2016-08-03 03:50:02
brew install automake 然后您可以使用aclocal
发布于 2015-05-11 12:22:05
在您的系统中需要两个第三方工具(autoconf和automake)来构建和安装一个开发版本的Valgrind。这些工具不再与Apple的Xcode开发环境打包,必须手动安装。
若要安装这些工具,请在终端中输入以下命令:
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-latest.tar.gz
tar -xzf autoconf-latest.tar.gz
cd autoconf-[x.xx]
./configure && make && sudo make install
curl -OL http://ftpmirror.gnu.org/automake/automake-1.15.tar.gz
tar -xzf automake-1.15.tar.gz
cd automake-1.15
./configure && make && sudo make install然后,您将能够继续执行per:http://valgrind.org/downloads/repository.html的步骤。
如果你在OS上,你会想要使用目前的开发版本的瓦兰,而该平台的支持已恢复到标准。
发布于 2016-03-14 20:28:14
如果安装酿制,则使用brew install automake和brew install autoconf
https://stackoverflow.com/questions/29938524
复制相似问题