Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Help Keep Boards Alive. Support us by going ad free today. See here: https://subscriptions.boards.ie/.
If we do not hit our goal we will be forced to close the site.

Current status: https://keepboardsalive.com/

Annual subs are best for most impact. If you are still undecided on going Ad Free - you can also donate using the Paypal Donate option. All contribution helps. Thank you.

what's d coolest IDE for C/C++ dev on Linux?

  • 08-09-2008 10:53AM
    #1
    Closed Accounts Posts: 46


    I'm running an Ubuntu distrib and wondering what are the best IDE (integrated with GCC and debugger) out there to develop C/C++ progs? mainly console app for the moment, but windows app in the future (GNome).

    with things like,
    • command helper (help function lookup in doc, like MSDN)
    • profiler
    • class diagram / design


Welcome!

It looks like you're new here. Sign in or register to get started.

Comments

  • Closed Accounts Posts: 580 karlr42
    ✭✭✭


    The CDT for Eclipse? Basically a C/C++ development environment on the Eclipse platform. You can get that installed on Ubuntu, I have. Though I'm not sure what compiler it uses
    linkage
    download linkage

    EDIT: yes, it uses gcc


  • Closed Accounts Posts: 46 FDuff


    thanks for the input Karl.

    I've the CDT installed, it all works fine except for the contextual help for C library functions!
    I have the man pages installed for the C lib, so typing 'man 3 printf' will show the man page for the function.
    Now, in Eclipse CDT, if I select a C lib function and CTRL+F1 it opens the help window but there isnt any link to any doc!?

    hovering a C lib function like printf() will show the function def.
    /* Write formatted output to stdout.
    
       This function is a possible cancellation point and therefore not
       marked with __THROW.  */
    extern int printf (__const char *__restrict __format, ...);
    

    Any idea?


  • Closed Accounts Posts: 46 FDuff


    I just found this page which has loads of info on the diff tools available to dev code on Linux.

    stuff like:

    Contents:

    * # Compilers
    * # Development Tools
    * # IDE: Integrated Development Environment
    * # Memory Debugging Tools
    * # Software Design
    * # CM: Change / Configuration Management
    * # Build Systems
    * # Autoconf
    * # Nightly / Continous Build and Test Systems
    * # Bug / Change Tracking
    * # Development Libraries
    * # Software Install / Update Systems
    * # Linux Software Development Notes
    * # Links
    * # Books


  • Registered Users, Registered Users 2 Posts: 501 rtmie
    ✭✭✭


    You could try kdevelop which should be part of your distro.

    R


Welcome!

It looks like you're new here. Sign in or register to get started.
Advertisement