up vote 7 down vote favorite
share [g+] share [fb]

I am a first year Comp. Sci. student and am looking for the best way to develop C++ on a Mac. I have Xcode and Textmate.

What are the benefits/negatives of each? Are there any better ones?

Do you have any tips?

I am not a fan of having to use a project to run programs with Xcode. Is this the only way to do it, or am I mistaken?

link|improve this question

2  
Programming questions go on stackoverflow.com – Jonathan Sampson Aug 20 '09 at 16:37
I just found Eclipse, though I havent tried it yet. Add that to the list to compare. – Josh Aug 20 '09 at 16:38
6  
Editor wars belong on Usenet. – Richard Hoskins Aug 20 '09 at 16:41
This isn't really programming question this is a software question it belongs here more than stackoverflow.com in my opinion. – faceless1_14 Aug 20 '09 at 17:20
I hate to be the one to play ping pong with a question but we now do have the 5 required votes to move this to SO, however I am not entirely convinced that it doesn't belong here as well. I will therefore wait for the power to be, the community or a more experienced moderator to make the final call. Agreed? – Diago Aug 20 '09 at 18:00
show 1 more comment
feedback

migrated from superuser.com Aug 20 '09 at 19:57

This question came from our site for computer enthusiasts and power users.

8 Answers

up vote 12 down vote accepted

I am not a fan of having to use a project to run programs with Xcode. Is this the only way to do it, or am I mistaken?

You are mistaken.

You do not need to have an XCode project to use XCode as an editor, nor do you need to use the XCode build system (though there are advantages to doing so). You can open any source file to edit in XCode, and you can compile from the command line with g++ / make / other standard tools.

Note that you can invoke the XCode editor from the command line via the 'xed' command, which is often useful when you're doing this sort of development:

fusillade:~ tyrone$ xed someFile.cpp
link|improve this answer
Great tip. I found it in /Developer/usr/bin on my mac. – bw1024 Dec 26 '11 at 11:34
feedback

I personally use Vim for editing everything. It takes getting used to but it makes everything easy as can be (http://macvim.org/OSX/index.php). I would recommend Eclipse for a beginner however (http://www.eclipse.org/downloads/)

link|improve this answer
2  
The macvim you linked is no longer under development since 2007. Check out code.google.com/p/macvim for a much more up-to-date and Mac-like vim – redacted Aug 20 '09 at 16:47
Ah thank you for that clarification actually its been a few years since I've used a Mac. Good to know if I ever go back to OS/X – faceless1_14 Aug 20 '09 at 17:19
@redacted: "Mac-like vim"? I feel like vim will always be pretty un-Mac-like. The only thing less Mac-like is probably Emacs ;-) – Joachim Sauer Jun 21 '10 at 9:21
@joachim - touché :) – redacted Jun 21 '10 at 13:17
feedback

i recommend vim

go into the terminal and type

vim yourfilename.cpp

and then, to compile and run

g++ -o outputfile youfilename.cpp (source file)
./outputfile
link|improve this answer
feedback

Xcode

Best around, for OS X at least.

link|improve this answer
feedback

For a complete c++ IDE, I like NetBeans. It is much easier to import an existing Makefile-based project into Netbeans than Xcode or Eclipse, the editor is completely customizable, and the code completion and navigation are simple to learn. TextMate is also great for quick editing of files and has an excellent interface for the Find in Project command.

And, the Aquamacs implementation of Emacs for the Mac is fantastic. Like vim, emacs has a rather steep learning curve but is a very powerful editor for c++ development. Using the Emacs Code Browser you can get most of the IDE functionality available in other options like Xcode or NetBeans.

As for other languages, I find Netbeans to be far superior to Eclipse for Python development. The hints, error checking, and library completions have really cleaned up my Python code. However, NetBeans is inferior to the Photran plugin in Eclipse for Fortran development. The Fortran support in NetBeans provides little more than syntax highlighting.

link|improve this answer
feedback

Emacs also is a good alternative to VIM

link|improve this answer
feedback

Until now I use a combination of Xcode for compilation and debugging and Qt Creator for coding. Qt Creator has much better code completion. You could also wait for Xcode 4. It will be a major leap, also for C++!

link|improve this answer
feedback

Try UltraEdit, it is fast and the best editor who I know. I recommend it. Milan

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.