Ubuntu desktop development environment (GNU tools)

2.4k views Asked by At

I am setting up a Linux development machine (Ubuntu 9.0.x).

I want to know the best development environment for a C++ developer on Ubuntu - giving my background (see below).

  1. 5 years+ C++
  2. 5 years Visual Studio
  3. Not much experience using GNU tools (GCC, GDB, make, etc.)
  4. 6 months or so of using Emacs at university (about 8 years ago!) - I don't remember anything though ;)

I come from a Windows background so am more at ease with GUI than CLI, although I expect to learn the CLI commands over time. I want to be effective and "hit the ground running" as it were, in terms of developing on Linux.

I am particular interested in tools that will make my life easier for:

1). project management 2). build configuration via GUI (rather than makefile editing - at least for now). 3). debugging IDE that allows me to set breakpoints and step in/out/over

It would be useful if the IDE suggested has a GUI to ease my transition to Linux, but is also customisable (e.g. can accept hand crafted edited make files etc. - when I have learnt how to create them). This will allow me to have more control over the build process later on.

Which set of tools would you recommend in order for me to achieve the maximum productivity in the minimum amount of time on my Ubuntu desktop?

So: Which application (IDE) offers: (i). easiest transition from Visual Studio (and ideally can use manully crafted make files) (ii). extensive debugging capability akin to Visual Studio

for the latest Ubuntu (9.0.x) desktop OS?

5

There are 5 answers

0
Asad Khan On

You can use Glade Interface designer (glade.gnome.org) for interface design.

BOUML for UML modelling & project management

You can always use eclipse or netbeans for c++ development on linux.

Though I recommend Eclipse, it would automatically generate makefiles, debugging is very easy & you can configure your code repositories within the IDE.

0
Steven Huwig On

I think you should just bite the bullet and learn enough make, gcc, and gdb to accomplish what you need to do at the command line. If you get that taken care of, you can use whatever editor you like to write the code -- even Visual Studio's editor.

0
ziggystar On

Have a look at Code::Blocks. It's a nice IDE for doing C/C++ and comes with an own build-system. But be sure not to grab the version inside the official ubuntu repository but go to the CB forum and look for the latest nightly build. There are people maintaining repositories with ubuntu packages. I think CB is worth the hassle of installing the latest version.

Link to Code::Blocks Forum

Btw. I did an install some days ago. There are two people maintaining 64-Bit Ubuntu packages. Only one did work, though. It was this one.

0
Nathan Campos On

The best tools that you need are:

  • make
  • gcc
  • g++
  • Your Favorite Text Editor
  • auto-tools
  • Qt Creator
  • Glade
  • Your Favorite Project Manager

For Ubuntu I suggest you to use Glade, because Ubuntu uses Gnome(GTK).

About IDEs:

0
Kirill V. Lyadvinsky On

As for C++ developing I'd choose Qt Creator IDE for easiest migrating from Visual Studio. I believe it can cover all your needs.