Results 1 to 9 of 9
Hey everyone,
I'm looking for a good C++ compiler for my Linux distro. I know there's gcc found in almost all distributions, but I'm looking for something that would have ...
Enjoy an ad free experience by logging in. Not a member yet? Register.
- 10-12-2005 #1Just Joined!
- Join Date
- Aug 2004
- Location
- Chicago
- Posts
- 24
Good C++ Compiler
Hey everyone,
I'm looking for a good C++ compiler for my Linux distro. I know there's gcc found in almost all distributions, but I'm looking for something that would have a nice, friendly GUI, something like Dev C++ for Windows.
- 10-12-2005 #2Linux Engineer
- Join Date
- Jan 2005
- Location
- Chicago (USA)
- Posts
- 1,028
Compiler GUI? What're you talking about? An IDE? You could try KDevelop and Emacs.
- 10-12-2005 #3
Kdevelop is good for starters. A good interface and its very easy to use.
- 10-12-2005 #4Linux Enthusiast
- Join Date
- Aug 2005
- Posts
- 542
EMacs is just for editing files. You will not get a built-in compiler by any means. I don't know of any C IDEs for Linux. Realize that people writing the software assume that if you are programming under Linux that you know how to set this stuff up yourself. This is true, just because Linux users are much more technical than Windows users.
Anyway, I don't know what's wrong with GCC. It's got lots of support and isn't really horribly difficult to use.
- 10-12-2005 #5Registered Linux user #270181
TechieMoe's Tech Rants
- 10-12-2005 #6Linux User
- Join Date
- Jul 2005
- Posts
- 369
Re: Good C++ Compiler
devC++ uses minigw32 wich is gcc for windows. Eclipse uses gcc as its compiler, all that eclipse does is provide a gui front end
Originally Posted by Krogen All i want for christmas is a new liver....a second chance to get afflicted with Cirrhosis
- 10-12-2005 #7Just Joined!
- Join Date
- Aug 2004
- Location
- Chicago
- Posts
- 24
All right, thanks guys...
Now... How do I make an executable for my compiled file? In Windows, after I compiled a file I had an .exe to launch it. Yes, I know there are no .exes in Linux! :P
NEVERMIND! Got it
- 10-15-2005 #8Just Joined!
- Join Date
- Jan 2005
- Location
- Linux Drive
- Posts
- 43
Cool, though you might want to post how you got it.
IIRC you would just do 'g++ code.cpp'
- 10-15-2005 #9Linux User
- Join Date
- Jul 2005
- Posts
- 369
edit the c file in vim or gedit, then run
replace the word app with the name of the aplicationCode:#cc app.c -o app
All i want for christmas is a new liver....a second chance to get afflicted with Cirrhosis


Reply With Quote
