问题描述
我遇到了在Ubuntu 16.04 LTS(服务器)上编译的问题。如果我不包含-std=c++11
位,它编译好。 Clang版本是3.8。
>cat foo.cpp
#include <string>
#include <iostream>
using namespace std;
int main(int argc,char** argv) {
string s(argv[0]);
cout << s << endl;
}
>clang++ -std=c++11 -stdlib=libc++ foo.cpp
In file included from foo.cpp:1:
/usr/include/c++/v1/string:1938:44: error: 'basic_string<_CharT, _Traits, _Allocator>' is missing exception specification
'noexcept(is_nothrow_copy_constructible<allocator_type>::value)'
basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
^
/usr/include/c++/v1/string:1326:40: note: previous declaration is here
_LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
^
1 error generated.
最佳解决方案
您已经在ubuntu 16.04上安装了libc++-dev
(正确),它应该允许您使用libc++
及其标准库的标头来构建clang++
。
它应该,但在std=c++11
(或更高标准)的存在下,它不会,因为您遇到了Debian bug #808086。
如果您希望使用clang++
编译为C++ 11标准或更高版本,那么在ubuntu获得此修复之前,您必须在没有libc++
的情况下使用libstdc++
(GNU C++标准库)来代替,这是默认行为。
clang++ -std=c++11 foo.cpp
要么:
clang++ -std=c++11 -stdlib=libstdc++ foo.cpp
将工作。
次佳解决方案
直到Mike Kinghan的回复中提到的Debian错误被修复,只需手动将缺少的(但必需的)noexcept
规范添加到ctor定义中就可以解决问题,即你可以添加
#if _LIBCPP_STD_VER <= 14
_NOEXCEPT_(is_nothrow_copy_constructible<allocator_type>::value)
#else
_NOEXCEPT
#endif
在/usr/include/c++/v1/string
的1938行之后。