I'll make it as brief as possible: I've not been using for 3/4 years now, and I have to install it for a project at university.
What I need is an easy to use distribution (I was thinking Kubuntu) and a decen C IDE.
On Windows I'm used to Visual Studio and Eclipse, are there similar IDEs for Linux?
Or do you suggest just using Emacs? This project of course won't be huge, a dozen files I guess, but still I'm used to the wonders of Visual Studio and I'd like to have something similar on Linux.
Thanks in advance
12 replies to this topic
#1
Posted 15 March 2011 - 09:28 AM
|
|
|
#2
Posted 15 March 2011 - 10:53 AM
Of course Eclipse is cross platform, and kubuntu sounds like a suitable option.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#3
Posted 15 March 2011 - 10:57 AM
Yeah but Eclipse is for Java, I need C.
In the meantime, Kubuntu has been downloaded and is ready for installation :D
In the meantime, Kubuntu has been downloaded and is ready for installation :D
#4
Posted 15 March 2011 - 11:23 AM
You were out of the loop! Eclipse CDT
It seems to be the most Visual-studio like IDE, both are fairly heavy in size and features.
It seems to be the most Visual-studio like IDE, both are fairly heavy in size and features.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#5
Posted 15 March 2011 - 12:19 PM
Awesome! Thanks! I was going with KDevelop but this definately seems better.
#6
Posted 15 March 2011 - 01:37 PM
Code::Blocks is the one IDE I like the best on Linux, and also the one I've been hearing most about when talking about IDEs on Linux.
#7
Posted 15 March 2011 - 01:39 PM
Thanks I'll try it as well :)
#8
Posted 15 March 2011 - 03:31 PM
Code::Blocks is a horrible mess in my opinion, it combines so many interfaces for wxDev or qt it makes hard to work with.
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#9
Posted 16 March 2011 - 08:28 AM
In Code::Blocks I've selected gcc but it still required to install g++, am I doing something wrong?
I don't want my code not to compile on my professor's pc, who uses gcc.
I don't want my code not to compile on my professor's pc, who uses gcc.
#10
Posted 16 March 2011 - 11:09 AM
you can get GCC without g++? If I remember correctly, you can add compiler profiles, wherein you give the paths to the C and C++ compiler, debugger, and stuff.
#11
Posted 16 March 2011 - 04:42 PM
eafkuor said:
In Code::Blocks I've selected gcc but it still required to install g++, am I doing something wrong?
I don't want my code not to compile on my professor's pc, who uses gcc.
I don't want my code not to compile on my professor's pc, who uses gcc.
You will be fine, "g++" is a symlink (symbolic link) of "gcc". This is so if you require a different C++ compiler, you can change g++ to link to something else, without having to change the compiler commands in the make file.
You can verify this with the following command:
ls -la `which g++`
Be sure to read the updated FAQ! || Health is achieved through the same 10,000 steps.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
If a suggested code/method fails, informing us is less important than telling us why or what errors occurred.
#12
Posted 16 March 2011 - 05:10 PM
ok, thanks :D
1 user(s) are reading this topic
0 members, 1 guests, 0 anonymous users


Sign In
Create Account


Back to top









