Jump to content

IDE Suggestions

jayctech

I'm looking for IDEs to install for C++ on Ubuntu. All suggestions appreciated. Also - does GCC include all common distributions of C++? If not, which ones is it missing?

Link to comment
Share on other sites

Link to post
Share on other sites

Code::Blocks, Netbeans, Visual Studio (Windows), Xcode (OS X), but the best thing you can do is get a good text editor, like Sublime Text.

What do you mean by common distributions?GCC includes all C++ standards and you can choose the one you like with the flag --Std=c(89/99/11)

I made a thread a while ago querying about the different distributions of C++. There's the "official" C++ standard with its latest iteration from 2011 I think (the one I'm most interested in having) as well as things like MS having their own variation.

Link to comment
Share on other sites

Link to post
Share on other sites

Eclipse.

The single biggest problem in communication is the illusion that it has taken place.

Link to comment
Share on other sites

Link to post
Share on other sites

Eclipse.

This.

 

Plugins for almost every language imaginable (aside from proprietary ones). 

Interested in Linux, SteamOS and Open-source applications? Go here

Gaming Rig - CPU: i5 3570k @ Stock | GPU: EVGA Geforce 560Ti 448 Core Classified Ultra | RAM: Mushkin Enhanced Blackline 8GB DDR3 1600 | SSD: Crucial M4 128GB | HDD: 3TB Seagate Barracuda, 1TB WD Caviar Black, 1TB Seagate Barracuda | Case: Antec Lanboy Air | KB: Corsair Vengeance K70 Cherry MX Blue | Mouse: Corsair Vengeance M95 | Headset: Steelseries Siberia V2

 

 

Link to comment
Share on other sites

Link to post
Share on other sites

Honestly, use a text editor unless you are using heavy frameworks like android or .net because text editors are much better because of how light and efficient they are. If you must have an IDE, check out geany.

Link to comment
Share on other sites

Link to post
Share on other sites

use code::blocks  is good IDE 

 

or you can install windows as virtual system and install VS :) 

Link to comment
Share on other sites

Link to post
Share on other sites

use code::blocks  is good IDE 

 

or you can install windows as virtual system and install VS :)

I'm using Ubuntu as a VM because I prefer it for coding. :P

Link to comment
Share on other sites

Link to post
Share on other sites

Honestly, use a text editor unless you are using heavy frameworks like android or .net because text editors are much better because of how light and efficient they are. If you must have an IDE, check out geany.

Main reason I want an IDE is so I can just press a hotkey and compile the code in a second rather than go to the directory in the terminal whenever I startup and then change to the terminal and run the command there to compile. It's a small thing and tbh thanks to Ubuntu's multi desktops that work with the keyboard to switch between it's a tiny thing but more efficient is still more efficient. :P

Link to comment
Share on other sites

Link to post
Share on other sites

Main reason I want an IDE is so I can just press a hotkey and compile the code in a second rather than go to the directory in the terminal whenever I startup and then change to the terminal and run the command there to compile. It's a small thing and tbh thanks to Ubuntu's multi desktops that work with the keyboard to switch between it's a tiny thing but more efficient is still more efficient. :P

 

Many editors can build inside of them.

Link to comment
Share on other sites

Link to post
Share on other sites

Any suggestions?

 

Well the one I use is sublime text. Works great and has a nice UI.

Link to comment
Share on other sites

Link to post
Share on other sites

You can try Qt Creator. It's amazing when it comes to coding for Qt(obviously), it might be good for plain c++, haven't tried it like that, otherwise Code::Blocks is the way to go.

Link to comment
Share on other sites

Link to post
Share on other sites

Hi, like people said above, just use a text editor. Emacs has very good support for building using GCC (and make), and you get all kinds of ide-features by using plugins (ecb, yasnippet, autocomplete just to name a few).

Or, if you want use an ide, I'd go for QtCreator.

Oh, and about c++ distributions: if you mean the way the language is implemented, then that is the GNU way (glibc for C). And yes, it does support the standard c++, just use a flag if you want to force (-stdc++11)

Current rig: i7-5820K, R5E, 1070ti (windows), Radeon HD7850 (Mac), a bunch of SSDs and HDDs, running MacOS Mojave, Windows 10 + a bunch of debian servers on Proxmox KVM hypervisor

Laptop: MacBook Pro 13" 2017

 

Previous projects: Razmac G5, Server, zenbox HTPC

 

See my GitHub profile!

A coder/modder from Finland

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×