Missing C++ header lt;__debuggt; after updating OSX Command Line Tools 6.3(缺少 C++ 头文件 lt;__debuggt;更新 OSX 命令行工具 6.3 后)
问题描述
从 App Store 更新到命令行工具 6.3 后,包括
或
在内的程序将导致文件未发现错误如下.cpp 没有什么有趣的,但包含在包含的标题之一中.
After updating to Command Line Tools 6.3 from the App Store, programs including <vector>
or <iterator>
which internally include <__debug> will cause file not found error as follows. The cpp is nothing interesting but includes in one of the included headers.
c++ -O3 -I/Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers -L/Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/build/binaries/clusterStaticLibrary /Users/farleylai/Documents/dev/git/ESMS/Optimizer/build/StreamIt/FIR/511/512/combined_threads.cpp -o streamit -lcluster -lpthread -lstdc++
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/build/StreamIt/FIR/511/512/combined_threads.cpp:9:
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/node_server.h:22:
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/thread_info.h:20:
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/connection_info.h:19:
/Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/socket_holder.h:43:25: warning: delete called on 'mysocket' that is abstract but has non-virtual destructor
[-Wdelete-non-virtual-dtor]
if (!is_mem_socket) delete sock;
^
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/build/StreamIt/FIR/511/512/combined_threads.cpp:9:
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/node_server.h:22:
In file included from /Users/farleylai/Documents/dev/git/ESMS/Optimizer/../StreamIt/src/cluster/headers/thread_info.h:26:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/vector:265:
In file included from /Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/__bit_reference:15:
/Library/Developer/CommandLineTools/usr/bin/../include/c++/v1/algorithm:641:10: fatal error: '__debug' file not found
#include <__debug>
^
有什么办法可以解决这个问题吗?我不希望指定任何额外的 C++ 标志.
Any ideas to fix this? I don't expect to specify any additional C++ flags.
谢谢.
PS:OSX 10.10.3 上的 MacBook pro
PS: MacBook pro on OSX 10.10.3
更新:
该问题已由 Apple 在其开发者论坛上验证.在命令行工具 6.2 中,__debug 的包含有条件地保护如下,但在 6.3 中没有.
The issue is verified by Apple on their developer's forum. In Command Line Tools 6.2, the inclusion of __debug is conditionally guarded as follows but not in 6.3.
#ifdef _LIBCPP_DEBUG
# include <__debug>
#else
# define _LIBCPP_ASSERT(x, m) ((void)0)
#endif
和 libcxx 人讨论了移除 __debug 的守卫 这里.感觉 __debug 在 OSX 上从来不存在.
And libcxx people talked about removing the guards of __debug here. It feels like __debug never exists on OSX.
推荐答案
通过 6.2.action#">Apple 的开发者下载页面.
Downgrade the Command Line Tools to 6.2 via Apple's Developer Download Page.
请注意为您的 OS X 下载正确的版本:
Be careful to download the correct version for your OS X:
- OS X 10.10
commandlinetoolsosx10.10forxcode6.2.dmg
- OS X 10.9
commandlinetoolsosx10.9forxcode6.2.dmg
这是可行的,因为 __debug
的包含在命令行工具 6.2 中有条件地受到保护,如下所示,但在 6.3 中则不然.
This works because the inclusion of __debug
is conditionally guarded as follows in Command Line Tools 6.2 but not in 6.3.
#ifdef _LIBCPP_DEBUG
# include <__debug>
#else
# define _LIBCPP_ASSERT(x, m) ((void)0)
#endif
我认为这是最安全的方法,因为:
In my opinion this is the safest way, because:
- 您不会损害您的工具链
- Apple 修复问题后,您可以通过 App Store 轻松升级
- 如果您手动添加文件,则必须稍后将其删除,否则可能会出现更多问题
更新 - 21.04.2015
问题已修复,由 Apple 解决.安装命令行工具 6.3.1 后,一切正常!
Problem fixed by Apple. After installing Command Line Tools 6.3.1 everything works as expected!
这篇关于缺少 C++ 头文件 <__debug>更新 OSX 命令行工具 6.3 后的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:缺少 C++ 头文件 <__debug>更新 OSX 命令行工具 6.3 后
基础教程推荐
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01