
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Compiling a C++ Program with GCC
Here we will see how to compile C++ program using GCC (GNU C Compiler). Let us consider, we want to compile this program.
Example
#include<iostream> using namespace std; main() { cout << "Hello World. This is C++ program" << endl; }
If this is a C program, we can compile with GCC like below ?
gcc test.c
But if we put C++ filename in that area, it may generate some error.
gcc test.cpp
Output
/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 $
This is not compilation error. This is linking error. To add the correct linker, we have to use -lstdc++ option.
gcc test.cpp -lstdc++
Output
$ ./a.out Hello World. This is C++ program $
Advertisements