Page 2 of 2 FirstFirst 12
Results 11 to 17 of 17

Thread: Newbie - Easy to Run, All-in-One IDE?

  1. #11
    Join Date
    Dec 2011
    Location
    The Netherlands
    Beans
    1,087
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Newbie - Easy to Run, All-in-One IDE?

    Quote Originally Posted by mxg284 View Post
    Ah I understand. Well before I get ahead of myself, once I have installed Eclipse, is there a terminal command for the C++ library I can install?

    Also, could I also please get a step by step for directing Eclipse to that installed library?
    Code:
    sudo apt-get install build-essential
    will install everything you need for c/c++ dev.
    If you want to dev in gtk (glade + gtk+-3.0 are dead easy, IMO) as well, you need this:
    Code:
    sudo apt-get install libgtk-3-dev
    "Everything that has a beginning, has an end." --an unexpectedly wise wallpaper

  2. #12
    Join Date
    May 2012
    Beans
    5

    Re: Newbie - Easy to Run, All-in-One IDE?

    OK, have that installed, created a new project, but I'm sure there are some settings that need adjusted, as I cannot even select the run program sequence...

    In fact, I don't even see a selection option for C++ anywhere while creating a new file.
    Last edited by mxg284; May 22nd, 2012 at 06:01 PM.

  3. #13
    Join Date
    Dec 2011
    Location
    The Netherlands
    Beans
    1,087
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Newbie - Easy to Run, All-in-One IDE?

    Quote Originally Posted by mxg284 View Post
    OK, have that installed, created a new project, but I'm sure there are some settings that need adjusted, as I cannot even select the run program sequence...

    In fact, I don't even see a selection option for C++ anywhere while creating a new file.
    Keep in mind that i program using gedit and a terminal.
    I write my own Makefiles and know where i link to.
    I attached a simple glade app that shows you a simple hello world!
    I added a precompiled binary, it's compiled on ubuntu 11.10 32bit.

    Here's a good tut, the only problem is that the signals aren't always in the same section as the tut says (example: The destroy signal is in GtkWidget, not GtkObject)
    http://blog.borovsak.si/2009/09/glad...roduction.html
    Attached Files Attached Files
    "Everything that has a beginning, has an end." --an unexpectedly wise wallpaper

  4. #14
    Join Date
    Jul 2009
    Location
    Oregon
    Beans
    321

    Re: Newbie - Easy to Run, All-in-One IDE?

    Gedit or Kate will do the job fine.
    Asus G73JW ROG-A3B7M
    Intel Core i7 || 16GB RAM || 802.11n+BT || 2 x 500GB Hybrid Drives || Nvidia GTX 460M

  5. #15
    Join Date
    Jul 2008
    Location
    The Left Coast of the USA
    Beans
    Hidden!
    Distro
    Kubuntu

    Re: Newbie - Easy to Run, All-in-One IDE?

    Text editors work fine unless you do complex collaborative projects, need powerful debugging and analysis tools, are under tight schedule deadlines from your clients and, well, want to make a crap load of money.
    Please read The Forum Rules and The Forum Posting Guidelines

    A thing discovered and kept to oneself must be discovered time and again by others. A thing discovered and shared with others need be discovered only the once.
    This universe is crazy. I'm going back to my own.

  6. #16
    Join Date
    Jan 2009
    Beans
    261
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Newbie - Easy to Run, All-in-One IDE?

    In fact, I don't even see a selection option for C++ anywhere while creating a new file.
    How did you install eclipse?
    Remember there are several versions of eclipse each version designed to compile a particular language.
    For C++ development you have to install the package called 'eclipse-cdt'. In the terminal type
    Code:
    sudo apt-get install eclipse-cdt
    Then inside eclipse, you can see options to create a new C++ project.
    Try the above. If any problems post them here.

  7. #17
    Join Date
    Dec 2011
    Location
    The Netherlands
    Beans
    1,087
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Newbie - Easy to Run, All-in-One IDE?

    Quote Originally Posted by QIII View Post
    Text editors work fine unless you do complex collaborative projects, need powerful debugging and analysis tools, are under tight schedule deadlines from your clients and, well, want to make a crap load of money.
    If i want powerfull debugging and analysis i use gdb and gprof.
    I can do more with gdb than most gui debuggers can.
    "Everything that has a beginning, has an end." --an unexpectedly wise wallpaper

Page 2 of 2 FirstFirst 12

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •