错误 "undefined reference to 'std::cout'"

Error "undefined reference to 'std::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 7(Wheezy)。

编译程序:

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

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

使用 gcc,(g++ 应该优于 gcc

gcc main.cpp -lstdc++ -o main.o

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

g++ my_source_code.cpp

生成文件

如果您正在使用 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

假设code.cpp是源码,下面不会报错:

make code
./code

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

FWIW,如果你想要一个 makefile,这里是你可以通过在顶部切换编译器来完成任一答案的方法。

# links stdc++ library by default
# CC := g++
# or
CC := cc

all: hello

util.o: util.cc
        $(CC) -c -o util.o  util.cc

main.o: main.cc
        $(CC) -c -o main.o  main.cc

# notice -lstd++ is after the .o files
hello: main.o util.o
        $(CC) -o hello main.o util.o -lstdc++

clean:
        -rm util.o main.o hello

在您的 CMake 中添加以下行会使 gcc link 具有 std,因此可以识别 std::cout

target_link_libraries(your_project
        PRIVATE
        -lstdc++
        )