C IDE for Mac needed

Posted by StasM on Programmers See other posts from Programmers or by StasM
Published on 2011-01-03T09:49:29Z Indexed on 2011/01/03 10:00 UTC
Read the original article Hit count: 360

Filed under:
|
|
|

I'm looking for heavy-duty C/C++ IDE for Mac that would satisfy the following criteria:

  1. Work with big projects (~5000 files, some of them >100K big) efficiently.
  2. Have good navigation both file-based and symbol-based - i.e. "go to file", "go to function" etc. with autocompletion support.
  3. Support for "go to declaration/definition" for symbols - functions, structures, etc.
  4. Auto-adding new files in folders already in the project.
  5. Support for code completion for values, function names, etc.
  6. At least rudimentary CPP macro understanding - i.e. #define foo bar then foo() should take me either to #define or to actual bar. I understand full CPP parsing may be hard, but I hope for at least the obvious cases.
  7. Support for displaying parameter names/types by function name, preferably - integrated with the previous item, for functions defined in the project. Support for libc would be nice too :)
  8. (optional) Cross-project search support (I can manage with grep -r if everything else works)
  9. (optional) SVN support, at least to some extent (update, commit, mark updated)

Is there such editor around? Free would be nice, but I'm ready to part with some money if it's good enough. I'm using TextMate now but I'm not satisfied with it. Tried Xcode but it seems to not be able to handle a large project - it just crashed...

© Programmers or respective owner

Related posts about Productivity

Related posts about ide