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

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

Options
  • 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


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 Posts: 501 ✭✭✭rtmie


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

    R


Advertisement