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 ...
- 01-19-2011 #1Just 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
- 01-20-2011 #2Just 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:
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.Code:sudo apt-get install build-essential
- 01-20-2011 #3Just 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 ??
- 01-20-2011 #4Just Joined!
- Join Date
- Jan 2011
- Posts
- 6
about eclipase
How can I compiler my program on Eclipse ??
My Eclipse luck for c++ library.
- 01-20-2011 #5Just 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.


Reply With Quote
