我正在用 C 语言编写并在 Ubuntu OS 中使用 pgi 编译器。我想包含一个带有我创建的函数的头文件。在我的代码中,我有
#include "myfunctions.h"
但是,当我编译时出现错误
PGC-F-0206-Can't find include file bits/c++config.h (/opt/pgi/linux86-64/16.7/include/bits/c++config.h: 22)
括号中的目录正是我的工作站上 bits/c++config.h 文件所在的位置。另外,如果我在我的代码中取出“#include”语句,一切运行正常。此外,我什至在我的路径中添加了“/opt/pgi/linux86-64/16.7/include”,但我仍然得到错误上面。我做错了什么?