Where can I find filemerge
after Xcode is upgraded to 4.3?
Is filemerge still available after Xcode 4.3 installation?
In Xcode, choose this menu item: Xcode -> Open Developer Tool -> FileMerge. The app itself is here:
/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.
You can also launch it from directly within xcode, on the top bar. Click "Xcode" >> "open developer tools" –
Lasonde
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
–
Ohare Run this in your terminal:
sudo /usr/bin/xcode-select -switch /Applications/Xcode.app/Contents/Developer
This didn't work for me, but
sudo /usr/bin/xcode-select -switch /Applications/Xcode.app
did. –
Otherworld 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. –
Passer
© 2022 - 2024 — McMap. All rights reserved.
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 – Evangelistic