gpt4 book ai didi

c++ - GCC -I 破坏标准库编译

转载 作者:行者123 更新时间:2023-11-30 01:16:41 24 4
gpt4 key购买 nike

注意:这个问题是在我写的时候自行解决的。我很难找到关于这个问题的信息,所以我觉得无论如何发布它都会有用。欢迎咨询。


大家好。我最近在我的 Linux Mint 上安装了 GCC 4.9.1,一直在编译我的一些项目,一切都很顺利。

现在我想重新开始一个这样的项目,从一些源文件排序开始。所以我创建了一个新文件夹并在里面移动了几个 .h 和 .tpp 文件。结构如下所示:

.
├── clip
│   ├── Clip.h
│   ├── ClipImpl.tpp
│   └── Mask.h
:
├── main.cpp
:
├── vect.cpp
├── vect.h
:

main.cpp 只是 #include "clip/Clip.h",稍后将包含一些用于测试目的的模板实例化。 clip/Clip.h包含clip/Mask.h,需要vect.h

请注意,后者包含不满足,因此编译器正确地提示。现在,我希望所有的 #include 都与项目的根目录相关,而不是它们的来源文件。好的,我编辑我的 Makefile :

# Retrieve the root directory
WD = $(shell pwd)

...

# Add it to the include search paths
%.o: %.cpp # vvvvvvv
$(CXX) $(CXXFLAGS) -I$(WD) -c $<

然后……轰隆隆??

g++ -std=c++1y `sdl2-config --cflags` -Wall -Wextra -Winline -fno-rtti -I/home/quentin/NetBeansProjects/glk -c AutoDisplayed.cpp
In file included from /home/quentin/NetBeansProjects/glk/time.h:4:0,
from /usr/include/sched.h:33,
from /usr/include/pthread.h:23,
from /opt/gcc-4.9.1/include/c++/4.9.1/x86_64-unknown-linux-gnu/bits/gthr-default.h:35,
from /opt/gcc-4.9.1/include/c++/4.9.1/x86_64-unknown-linux-gnu/bits/gthr.h:148,
from /opt/gcc-4.9.1/include/c++/4.9.1/ext/atomicity.h:35,
from /opt/gcc-4.9.1/include/c++/4.9.1/bits/basic_string.h:39,
from /opt/gcc-4.9.1/include/c++/4.9.1/string:52,
from /opt/gcc-4.9.1/include/c++/4.9.1/stdexcept:39,
from /opt/gcc-4.9.1/include/c++/4.9.1/array:38,
from /opt/gcc-4.9.1/include/c++/4.9.1/tuple:39,
from /opt/gcc-4.9.1/include/c++/4.9.1/bits/stl_map.h:63,
from /opt/gcc-4.9.1/include/c++/4.9.1/map:61,
from AutoDisplayed.h:5,
from AutoDisplayed.cpp:1:
/opt/gcc-4.9.1/include/c++/4.9.1/functional: In member function ‘_Result std::_Bind<_Functor(_Bound_args ...)>::operator()(_Args&& ...)’:
/opt/gcc-4.9.1/include/c++/4.9.1/functional:1322:8: error: ‘forward_as_tuple’ is not a member of ‘std’
std::forward_as_tuple(std::forward<_Args>(__args)...),
^

我搜索了很多,实际上发现了写这句话时发生了什么。

最佳答案

我实际上有一个 time.h文件在我的项目的根目录中。虽然到目前为止它没有造成任何问题,但它开始被包含在标准 header 的位置 <time.h> .没有重命名文件,我深入研究了 GCC 文档并找到了问题的原因(强调我的):

-Idir
Add the directory dir to the head of the list of directories to be searched for header files. This can be used to override a system header file, [...] the directories are scanned in left-to-right order; the standard system directories come after.

因此,-I 选项通过将您的目录放在列表前面来覆盖 系统 header 。不好,我想把它放在后面......但下面是解决方案:

-iquotedir
Add the directory dir to the head of the list of directories to be searched for header files only for the case of ‘#include "file"’; they are not searched for ‘#include <file>’, otherwise just like -I.

哦。这正是我所需要的。很遗憾我以前从未听说过该选项,并且一直将 -I 用于错误的目的。那好吧。破案了!

关于c++ - GCC -I 破坏标准库编译,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26011673/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com