undefined reference to 'std::basic_string

来源:互联网 发布:money pro for mac 编辑:程序博客网 时间:2024/05/31 05:27

[c/c++][gcc] undefined reference to 'std::basic_string ...'

我在使用 gcc 对c++ 文件进行编译的时候 (命令是 "gcc HelloWorld -o HelloWorld" )报出了错误:

undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::s
ize() const'
undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::
operator[](unsigned int) const'
undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::
operator[](unsigned int) const'
undefined reference to `std::basic_string<char, std::char_traits<char>, std::allocator<char> >::
operator[](unsigned int) const'
undefined reference to `std::cout'
undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std
::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*)'
undefined reference to `std::ios_base::Init::Init()'
undefined reference to `std::ios_base::Init::~Init()'
collect2: ld returned 1 exit status

解决方法是用如下命令进行编译(使用 -l 来连接 stdc++):

gcc HelloWorld.cpp -lstdc++ -o HelloWorld

另外,你也可以使用 g++, 效果是一样的, stdc++会被自动连接:

g++ HelloWorld.cpp -o HelloWorld
原创粉丝点击