LINUX.ORG.RU

не компилируются 5 строчек кода =(


0

0

Почему gcc 3.3.3 не компилит эти строки:

#include <iostream.h>
main()
{
 cout<<"Hello, LOR!";
 return 1;
}

файлик называется test.cpp :) 
при попытке gcc test.cpp вылазит:

root@localhost~#gcc /home/temp/test.cpp 
In file included from /usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.3/include/g++-v3/backward/iostream.h:31,

                 from /home/temp/test.cpp:1:
/usr/lib/gcc-lib/i686-pc-linux-gnu/3.3.3/include/g++-v3/backward/backward_warnin
g.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.
/tmp/ccyPMcXv.o(.text+0x1b): In function `main':
: undefined reference to `std::cout'
/tmp/ccyPMcXv.o(.text+0x20): In function `main':
: 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/ccyPMcXv.o(.text+0x49): In function `__static_initialization_and_destruction_0(int, int)':
: undefined reference to `std::ios_base::Init::Init[in-charge]()'
/tmp/ccyPMcXv.o(.text+0x7a): In function `__tcf_0':
: undefined reference to `std::ios_base::Init::~Init [in-charge]()'
/tmp/ccyPMcXv.o(.eh_frame+0x11): undefined reference to `__gxx_personality_v0'
collect2: ld returned 1 exit status

не ругать).
спасибо.
anonymous

Потому что gcc - сишный компилятор, либо делай -lstdc++, либо компиляй через g++!

anonymous
()

Попробуй сс test.cpp -lstdc++ :)

KIV
()

Надо либо так:

#include <cstdio>
int main()
{
    printf("Hello LOR\n");
    return 0;
}

Либо так:

#include <iostream>
int main()
{
    std::cout << "Hello LOR\n";
    return 0;
}

g++ test.cpp

hapchu ★★
()
Ответ на: комментарий от UVV

g++ - то, что доктор прописал.
благодарю великодушно =).

anonymous
()
Вы не можете добавлять комментарии в эту тему. Тема перемещена в архив.