我正在尝试将 std::atomic 与 clang 一起使用。但是,每当我尝试包含头文件 atomic ( #include <atomic>
) 时,都会收到消息“找不到 atomic”。请注意,我std=c++11 -stdlib=libc++
在编译时包括 - 。我错过了什么?
我使用的 clang 版本是 3.2。
我使用的 clang 版本是 3.2。
Clang 根据LLVM CXX Status添加了跨两个不同版本的原子支持。第一个是 Clang 3.1,第二个是 Clang 3.2。
我认为您可以使用以下方法进行检查:
#if defined(__clang__)
# if __has_feature(cxx_atomic)
# define CLANG_CXX11_ATOMICS 1
# endif
#endif
然后,在您的代码中:
#if CLANG_CXX11_ATOMICS
# include <atomic>
#endif
...
#if defined(CLANG_CXX11_ATOMICS)
# define MEMORY_BARRIER() std::atomic_thread_fence(std::memory_order_acq_rel)
#elif defined(__GNUC__) || defined(__clang__)
# define MEMORY_BARRIER() __asm__ __volatile__ ("" ::: "memory")
...
#endif
我只能说“我认为”,因为在Clang Language Extensionscxx_atomic
中没有记录。但是,它出现在 LLVM 站点的搜索中:“cxx_atomic”site:llvm.org。
CFE 用户邮件列表还有一个悬而未决的问题:如何检查 std::atomic 可用性?
请注意,我在编译时包括了 -std=c++11 -stdlib=libc++。我错过了什么?
为此,您可能正在使用其中一个 Clang/LLVM C++ 运行时,它实际上只是 C++03,但假装是 C++11。过去它给我带来了很多问题,因为我们支持许多编译器和平台。
下面是 Jonathan Wakely 帮助我们制作的测试,看看它是否真的是 C++11 库,还是 Apple 的假 C++11 库之一:
// Visual Studio began at VS2010, http://msdn.microsoft.com/en-us/library/hh567368%28v=vs.110%29.aspx.
// Intel and C++11 language features, http://software.intel.com/en-us/articles/c0x-features-supported-by-intel-c-compiler
// GCC and C++11 language features, http://gcc.gnu.org/projects/cxx0x.html
// Clang and C++11 language features, http://clang.llvm.org/cxx_status.html
#if (_MSC_VER >= 1600) || (__cplusplus >= 201103L)
# define CXX11_AVAILABLE 1
#endif
// Hack ahead. Apple's standard library does not have C++'s unique_ptr in C++11. We can't
// test for unique_ptr directly because some of the non-Apple Clangs on OS X fail the same
// way. However, modern standard libraries have <forward_list>, so we test for it instead.
// Thanks to Jonathan Wakely for devising the clever test for modern/ancient versions.
// TODO: test under Xcode 3, where g++ is really g++.
#if defined(__APPLE__) && defined(__clang__)
# if !(defined(__has_include) && __has_include(<forward_list>))
# undef CXX11_AVAILABLE
# endif
#endif
您是否指定-I /path/to/your/c++
(或者,几乎等同地,-cxx-isystem /path/to/your/c++
)以便clang++
可以找到它的位置?
如果您认为不需要它们,请尝试clang++ -print-search-dirs
确认。
您的 clang 版本已过时。您应该从包管理器或http://clang.llvm.org/获取最新版本。