¿Será este el ejemplo?
#include <iostream>
using namespace std;
int main()
{
cout << "Hola, moondo.\n";
}
Lanza el error:
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
Además, este ejemplo:
#include <iostream>
int main()
{
std::cout<<"Hola, moondo.\n";
}
arroja el error:
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
Nota: Estoy usando Debian Wheezy.
Bueno, eso definitivamente resolvió el problema. Según tengo entendido, GCC es el acrónimo de Gnu Compiler Collection. ¿No debería llamar al compilador de g ++ cuando sea necesario? Por lo que el gcc comando llama al compilador de C en lugar ...
—
D1X
@ D1X es porque invocaste el enlazador por separado del compilador. cuando escribe
—
MM
gcc -o edit main.o
no sabe que main.o
va a necesitar bibliotecas de inicio de C ++.
P: ¿No debería llamar al compilador de g ++ cuando sea necesario? R: No más de gcc debería llamar a gfortran, gjc, ... etc. etc. según sea necesario.
—
paulsm4
g++
lugar degcc
.gcc
es para C y no le dará acceso a la biblioteca estándar de C ++.