Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Where can I find filemerge after Xcode is upgraded to 4.3?

share|improve this question

2 Answers

up vote 42 down vote accepted

In Xcode, choose this menu item: Xcode -> Open Developer Tool -> FileMerge. The app itself is /Applications/Xcode.app/Contents/Applications/FileMerge.app.

On the command line, use opendiff. You must have the command line tools installed -- go to Xcode, Preferences, Downloads tab, and install Command Line Tools if you haven't already.

share|improve this answer
Doesn't work for me: I get Error: Can't run /Developer/usr/bin/opendiff (no such file). Xcode 4.3 removed this folder altogether, and now /usr/bin/opendiff exists but gives me this error – Jean-Philippe Pellet Mar 5 '12 at 8:44
You can also launch it from directly within xcode, on the top bar. Click "Xcode" >> "open developer tools" – 0x7fffffff Mar 5 '12 at 9:35
30  
If the command-line doesn't work, and you have no /Developer directory anymore, you probably need to: sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer – Kurt Revis Mar 9 '12 at 7:03

Run this in your terminal:

sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer
share|improve this answer
3  
This didn't work for me, but sudo /usr/bin/xcode-select -switch /Applications/Xcode.app did. – Sebastian Motraghi Mar 20 '12 at 18:56
Weird, it worked for me. I'll leave it unedited for now, and people will just try both methods and use the one that works for them. – winsmith Mar 22 '12 at 9:17

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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