proggR Posted January 28, 2009 Share Posted January 28, 2009 I'm switching everything over to openSuSE right now (mainly because it botched my Windows install and my disks are in a different location so I have no choice at the moment). I'm in a C++ class that uses Borland C++ at the school and I've been using Dev C++ at home. Can anyone let me know of any other IDEs that would offer similar features as those two for Linux? I've been trying KDevelop but it doesn't seem to compile from the program which is fine but then when I try using gcc from a terminal it doesn't actually read in my headers or anything like that. At anyrate, it would be nice to have a development suite that has a debugger and compiler included so I can just push a few buttons to test my code when I'm done. Any help would be greatly appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/ Share on other sites More sharing options...
GingerRobot Posted January 28, 2009 Share Posted January 28, 2009 Eclipse is most likely your best, though you might want to figure out what's going on with gcc since it'll use that to compile anyway. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/#findComment-748806 Share on other sites More sharing options...
Maq Posted January 28, 2009 Share Posted January 28, 2009 Use emacs. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/#findComment-748829 Share on other sites More sharing options...
deadlyp99 Posted February 4, 2009 Share Posted February 4, 2009 install the g++ package You dont NEED and IDE. Ok? The faster you learn that the better. When I was learning c++ I coded a simple ide in python. So I had a text editor that had a "compile" button basically. Took a very short time to make, and I ended up just using gedit. On suse, just use kedit (if your running kde which you probably are). Command line for c++ is going to be "g++ -wal file.c -o output.bin" Syntax may be a bit off, but just use "man g++" and you'll figure it out. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/#findComment-754099 Share on other sites More sharing options...
Maq Posted February 4, 2009 Share Posted February 4, 2009 You dont NEED and IDE. Ok? The faster you learn that the better. Maybe for small scale projects. But for anything larger you will need an IDE that has all the features or else you will never get anything done. Don't get me wrong, I use VIM and Gedit all the time for small edits and modifications but when you're building something like a large scale J2EE web application you will need a solid IDE. Maybe this is just my opinion, but in my experience this has always proved to be true. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/#findComment-754103 Share on other sites More sharing options...
corbin Posted February 4, 2009 Share Posted February 4, 2009 Maybe this is just my opinion, but in my experience this has always proved to be true. I have that opinion too. I use an IDE for anything over a couple files. Quote Link to comment https://forums.phpfreaks.com/topic/142815-decent-development-idecompiler-for-linux/#findComment-754121 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.