Find the answer to your Linux question:
Results 1 to 5 of 5
I have installed eclipse on debin linux. 1.I create a new project on Eclipse. 2.Eclipse products a new sample program. 3.After compiling,it shows something error message. I guest that Eclipse ...
  1. #1
    Just Joined!
    Join Date
    Jan 2011
    Posts
    6

    about eclipse compiler

    I have installed eclipse on debin linux.

    1.I create a new project on Eclipse.

    2.Eclipse products a new sample program.

    3.After compiling,it shows something error message.

    I guest that Eclipse have no any library on it.

    how install glibc on Eclipse ??

    thanks frankieyam1

    2011/11/19

  2. #2
    Just Joined!
    Join Date
    Dec 2009
    Location
    Maryland, USA
    Posts
    83
    Eclipse is an Integrated Development Environment (IDE) - a fancy programmer's editor and much more. It does not include a compiler. In most Linux distributions, you need to install a compiler for the language you're programming in. The compiler typically installed is the Gnu Compiler Collection (GCC) which includes the C compiler, gcc, and the C++ compiler, g++, with the typical libraries. In a distributions that use apt, the command to install the basics for programming is:

    Code:
    sudo apt-get install build-essential
    Sorry, but I don't know for sure what the method is in Debian to accomplish the same thing. Either someone smarter will help, or you might try Googling.

  3. #3
    Just Joined!
    Join Date
    Jan 2011
    Posts
    6

    about Eclipse

    I use 'sudo apt-get install build-essential' to get c++ library.
    But I can't compiler my program on Eclipse.
    why ??

  4. #4
    Just Joined!
    Join Date
    Jan 2011
    Posts
    6

    about eclipase

    How can I compiler my program on Eclipse ??

    My Eclipse luck for c++ library.

  5. #5
    Just Joined!
    Join Date
    Dec 2009
    Location
    Maryland, USA
    Posts
    83
    Are you getting any error messages? Does your code compile from the command line? Does any program compile from the command line? You've got to help us help you by giving us more info.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •