นี่เป็นตัวอย่าง:
#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
นั่นแก้ไขปัญหาได้อย่างแน่นอน ดังที่ฉันเข้าใจ GCC เป็นตัวย่อของ Gnu Compiler Collection มันไม่ควรเรียกคอมไพเลอร์ g ++ เมื่อจำเป็น? ดังนั้นคำสั่ง gcc จึงเรียกคอมไพเลอร์ c แทน ...
—
D1X
@ D1X เป็นเพราะคุณเรียกใช้ตัวลิงก์แยกจากคอมไพเลอร์ เมื่อคุณเขียน
—
MM
gcc -o edit main.o
มันไม่รู้ว่าmain.o
จะต้องมีไลบรารีเริ่มต้น C ++
ถาม: มันไม่ควรเรียกคอมไพเลอร์ g ++ เมื่อจำเป็น? A: ไม่เกิน gcc ควรเรียก gfortran, gjc, ... ฯลฯ ฯลฯ ตามต้องการ
—
paulsm4
g++
สำหรับ C และจะไม่ให้คุณเข้าถึงไลบรารีมาตรฐาน C ++gcc
gcc