使用 cloog 和 ppl 安装 gcc 4.6.2
我想用 cloog 和 ppl 安装 gcc 4.6.2。我的系统中安装了这两个库。当我尝试执行 ./configure --enable-languages=c,c++ --with-ppl=/usr/lib --with-cloog=/usr/lib
时,出现错误 < code>找不到目录“/usr/lib/lib”或“/usr/lib/include”所以,我尝试了./configure --enable-languages=c,c++ --with- ppl --with-cloog
。在这种情况下,我得到Unable to find a usable ppl
。有人可以帮我解决这个问题吗?
I want to install gcc 4.6.2 with cloog and ppl. I have both the libraries installed in my system. When I try to do ./configure --enable-languages=c,c++ --with-ppl=/usr/lib --with-cloog=/usr/lib
, I get an error Cannot find the directories "/usr/lib/lib" or "/usr/lib/include"
So, I tried ./configure --enable-languages=c,c++ --with-ppl --with-cloog
. In this case, I get Unable to find a usable ppl
. Can someone help me on this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不说你的系统是什么吗?您也没有说明您已经检查过哪些内容以确保您确实安装了这些库?因此,这里有一个可能是您遇到的问题的常见问题。
假设您使用的是 Linux,许多发行版的每个库都有两个软件包:
例如
您只需要第一个软件包来运行使用它的程序,但需要两个软件包来编译这些程序。
You don't say what your system is? You also don't say what you've checked to ensure that you really do have the libraries installed? So, here's one common gotcha that might be your problem.
Assuming you're on Linux, many distro have two packages for each library:
E.g.
You only need the first package to run programs that use it, but you need both to compile those programs.