vote up 0 vote down star

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?

flag

63% accept rate
2  
Programming questions go on stackoverflow.com – Jonathan Sampson Aug 20 at 16:37
I just found Eclipse, though I havent tried it yet. Add that to the list to compare. – Josh Aug 20 at 16:38
4  
Editor wars belong on Usenet. – richardhoskins Aug 20 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 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 at 18:00
show 1 more comment

migrated from superuser.com

6 Answers

vote up 4 vote down check

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|flag
vote up 1 vote down

Eclipse

link|flag
1  
Please eloborate. One line answers with a link is not a valid answer. – Diago Aug 20 at 17:32
vote up 6 vote down

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|flag
1  
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 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 at 17:19
vote up 1 vote down

Xcode

Best around, for OS X at least.

link|flag
vote up 0 vote down

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|flag
vote up 0 vote down

Emacs also is a good alternative to VIM

link|flag

Your Answer

Get an OpenID
or

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