首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >安装缬磨错误

安装缬磨错误
EN

Stack Overflow用户
提问于 2015-04-29 08:40:24
回答 4查看 21K关注 0票数 31

我试着在我的mac上安装val研,但是当我执行./autogen.sh时,得到以下错误:

代码语言:javascript
复制
running: aclocal
./autogen.sh: line 6: aclocal: command not found
error: while running 'aclocal'

有人知道怎么解决这个问题吗?

EN

回答 4

Stack Overflow用户

回答已采纳

发布于 2016-08-03 03:50:02

代码语言:javascript
复制
brew install automake 

然后您可以使用aclocal

票数 68
EN

Stack Overflow用户

发布于 2015-05-11 12:22:05

在您的系统中需要两个第三方工具(autoconf和automake)来构建和安装一个开发版本的Valgrind。这些工具不再与Apple的Xcode开发环境打包,必须手动安装。

若要安装这些工具,请在终端中输入以下命令:

代码语言:javascript
复制
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上,你会想要使用目前的开发版本的瓦兰,而该平台的支持已恢复到标准。

票数 8
EN

Stack Overflow用户

发布于 2016-03-14 20:28:14

如果安装酿制,则使用brew install automakebrew install autoconf

票数 6
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/29938524

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档