Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

การคอมไพล์โปรแกรม C++ ด้วย GCC


เราจะมาดูวิธีการคอมไพล์โปรแกรม C++ โดยใช้ GCC (GNU C Compiler) ให้เราพิจารณาว่าเราต้องการรวบรวมโปรแกรมนี้

ตัวอย่าง

#include<iostream>
using namespace std;
main() {
   cout << "Hello World. This is C++ program" << endl;
}

หากเป็นโปรแกรม C เราสามารถคอมไพล์ด้วย GCC ได้ดังนี้ -

gcc test.c

แต่ถ้าเราใส่ชื่อไฟล์ c++ ไว้ในบริเวณนั้น อาจเกิดข้อผิดพลาดบางอย่างได้

gcc test.cpp

ผลลัพธ์

/tmp/ccf1KGDi.o: In function `main':
1325.test.cpp:(.text+0xe): undefined reference to `std::cout'
1325.test.cpp:(.text+0x13): 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*)'
1325.test.cpp:(.text+0x1d): 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> >&)'
1325.test.cpp:(.text+0x28): undefined reference to `std::ostream::operator<<(std::ostream& (*)(std::ostream&))'
/tmp/ccf1KGDi.o: In function `__static_initialization_and_destruction_0(int, int)':
1325.test.cpp:(.text+0x58): undefined reference to `std::ios_base::Init::Init()'
1325.test.cpp:(.text+0x6d): undefined reference to `std::ios_base::Init::~Init()'
collect2: error: ld returned 1 exit status
$

นี่ไม่ใช่ข้อผิดพลาดในการรวบรวม นี่คือข้อผิดพลาดในการเชื่อมโยง ในการเพิ่มตัวเชื่อมโยงที่ถูกต้อง เราต้องใช้ตัวเลือก –lstdc++

gcc test.cpp -lstdc++

ผลลัพธ์

$ ./a.out
Hello World. This is C++ program
$