为什么在编译器选项中添加搜索目录后,标准库头中会报告错误?

Why are there errors reported inside a standard library header after adding a search directory in compiler options?(为什么在编译器选项中添加搜索目录后,标准库头中会报告错误?)
本文介绍了为什么在编译器选项中添加搜索目录后,标准库头中会报告错误?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在CodeBlock(MinGW32)中有一个项目,其设置如下:

Foo/src/somefile1.cpp
Foo/src/somefile2.cpp
Foo/src/somefile1.h
...

标题以这种方式包含:

#include "somefile1.h"

为了能够编译,我在"项目选项">"搜索目录"中添加了以下目录(作为相对路径):

src

添加该文件夹后,项目将进行编译。但是,如果我包含一个类似<ctime>的标准头文件,ctime头文件中会出现以下错误:

'::clock_t' has not been declared
'::time_t' has not been declared
...

,依此类推,用于ctime的std namespace括号内的所有行。如果从搜索目录中删除src文件夹,我可以重新编译。

我已将代码减少到最低限度,删除了除main.cpp以外的所有文件,但问题仍然存在:

#include <ctime> //errors if "src" folder added in search folders

int main(int argc, char **argv) {
    time(NULL); //does not compile
    return(0);
}

推荐答案

我发现问题了:

在我尝试编译的项目中,有一个名为"time.h"的文件。

与标准库time.h文件同名。因此,在ctime文件中,包含项目的time.h(不包含lock_t和其他定义),因此无法编译ctime。

作为解决方案,我只是将项目的time.h重命名为非保留名称。

这篇关于为什么在编译器选项中添加搜索目录后,标准库头中会报告错误?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Boost module machine type #39;X86#39; conflicts with target machine type #39;x64#39;(Boost模块计算机类型#39;x86#39;与目标计算机类型#39;x64#39;)
Trouble running LLVM examples(运行LLVM示例时出现问题)
Linker error while linking some windows APIs(链接某些Windows API时出现链接器错误)
Python ctypes, C++ object destruction(Python ctype,C++对象销毁)
DllGetClassObject return amp;quot;No such interface supportedamp;quot; while CoCreateInstance can find it successful(DllGetClassObject返回amp;不支持这样的接口,而CoCreateInstance发现它成功了)
Is static_castamp;lt;doubleamp;gt;(std::nanf(amp;quot;amp;quot;)) well defined?(Static_castamp;lt;doubleamp;gt;(std::nanf(amp;quot;amp;quot;))是否定义良好?)