未定义引用' std :: cout'

时间:2015-01-30 13:20:38

标签: c++ c++11 gcc cout

这就是例子:

#include <iostream>
using namespace std;
int main()
{
    cout << "Hola, moondo.\n";
}

它抛出错误:

gcc -c main.cpp gcc -o edit main.o  main.o: In function `main':
main.cpp:(.text+0xa): undefined reference to `std::cout'
main.cpp:(.text+0xf): 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*)'
main.o: In function `__static_initialization_and_destruction_0(int,int)':
main.cpp:(.text+0x3d): undefined reference to `std::ios_base::Init::Init()'
main.cpp:(.text+0x4c): undefined reference to `std::ios_base::Init::~Init()' collect2: error: ld
returned 1 exit status make: *** [qs] Error 1

此外,这个例子:

#include <iostream>
int main()
{
    std::cout<<"Hola, moondo.\n";
}

抛出错误:

gcc -c main.cpp gcc -o edit main.o  main.o: In function `main':
main.cpp:(.text+0xa): undefined reference to `std::cout'
main.cpp:(.text+0xf): 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*)'
main.o: In function `__static_initialization_and_destruction_0(int,int)': main.cpp:(.text+0x3d): undefined reference to `std::ios_base::Init::Init()'
main.cpp:(.text+0x4c): undefined reference to `std::ios_base::Init::~Init()' collect2: error: ld
returned 1 exit status make: *** [qs] Error 1

注意:我正在使用Debian Wheezy。

4 个答案:

答案 0 :(得分:201)

使用以下命令编译程序:

g++ -Wall -Wextra -Werror -c main.cpp -o main.o
     ^^^^^^^^^^^^^^^^^^^^ <- For listing all warnings when your code is compiled.

因为cout存在于C ++标准库中,使用-lstdc++时需要显式链接gcc; g++默认链接标准库。

使用gcc时,([{1}}应优先于g++

gcc

答案 1 :(得分:31)

是的,使用g++命令对我有用:

g++ my_source_code.cpp

答案 2 :(得分:1)

假设code.cpp是源代码,则以下内容不会引发错误:

make code
./code

这里,第一个命令编译代码并创建一个具有相同名称的可执行文件,第二个命令运行它。在这种情况下,无需指定g++关键字。

答案 3 :(得分:0)

制作文件

如果您使用的是Makefile,而您却像我一样出现在这里,那么这可能就是您要查找的内容或:

如果您使用的是Makefile,则需要更改cc,如下所示

my_executable : main.o
    cc -o my_executable main.o

CC = g++

my_executable : main.o
    $(CC) -o my_executable main.o