无法用icpc打开源文件“bits / c ++ config.h”错误

时间:2013-10-29 14:03:48

标签: c++ ubuntu gcc icc ubuntu-13.10

我正在尝试使用icpc在64位计算机上编译程序。不幸的是,我收到catastrophic error: cannot open source file "bits/c++config.h"的错误消息。我已经从here采纳了一些建议但没有成功。另外,我不会忘记事先运行source /opt/intel/bin/compilervars.sh intel64我会在Ubuntu 13.10上运行,以防这一点很重要。

2 个答案:

答案 0 :(得分:9)

由于某种原因,icpc编译器不解析以下目录。您可以设置以下变量;用你的g ++版本替换4.8

export CPLUS_INCLUDE_PATH=$CPLUS_INCLUDE_PATH:/usr/include/x86_64-linux-gnu/c++/4.8

答案 1 :(得分:7)

首先,找到丢失的文件:

find /usr -name c++config.h

(Headers在 / usr ,大​​部分时间。)然后,将其顶部dir添加到编译命令的include路径中,这样编译器就会找到“bits / c ++ config” .h“,使用 -I 选项。类似的问题已经在SO,BTW上被问到:Missing include "bits/c++config.h" when cross compiling 64 bit program on 32 bit in Ubuntu