web-dev-qa-db-ja.com

単純なC ++プログラムをgccでコンパイルすると、「未定義の参照」エラーが発生するのはなぜですか?

Ubuntuでc ++をコンパイルしようとしています。 Geditでコードを記述します。これは単純なHello Worldプロジェクトです。ターミナルに移動してgcc helloworld.ccで実行すると、次のメッセージが表示されます。

/tmp/ccy83619.o: In function `main':
helloworld.cc:(.text+0xa): undefined reference to `std::cout'
helloworld.cc:(.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*)'
/tmp/ccy83619.o: In function `__static_initialization_and_destruction_0(int, int)':
helloworld.cc:(.text+0x3d): undefined reference to `std::ios_base::Init::Init()'
helloworld.cc:(.text+0x4c): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status

それはどういう意味ですか、ここからどこに行きますか?

3
Tzikos

C++プログラムは、C++標準ライブラリとリンクする必要があります。 could標準ライブラリ、つまりgcc -o hello hello.cpp -lstdc++を手動でリンクしますが、通常はそのようには行われません。代わりに、g++を自動的にリンクするgccの代わりにlibstdc++を使用する必要があります。

例与えられた

$ cat hello.cpp
#include <iostream>

int main(void) { std::cout << "Hello world" << std::endl; return 0; }

それから

$ gcc -o hello hello.cpp
/tmp/ccty9cjF.o: In function `main':
hello.cpp:(.text+0xa): undefined reference to `std::cout'
hello.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*)'
hello.cpp:(.text+0x14): undefined reference to `std::basic_ostream<char, std::char_traits<char> >& std::endl<char, std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&)'
hello.cpp:(.text+0x1c): undefined reference to `std::ostream::operator<<(std::ostream& (*)(std::ostream&))'
/tmp/ccty9cjF.o: In function `__static_initialization_and_destruction_0(int, int)':
hello.cpp:(.text+0x4a): undefined reference to `std::ios_base::Init::Init()'
hello.cpp:(.text+0x59): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status

一方

g++ -o hello hello.cpp
$ ./hello
Hello world
5
steeldriver