It was agreed.
I installed Xcode 4.3.2 through the App Store and installed the command line tools, but I already had Xcode 3.1 installed many years ago. I googled around and found the following commands:
sudo /Developer/Library/uninstall-devtools –mode=all sudo xcode-select -switch /Applications/Xcode.app/Contents/Developer
This healed my problem, and after I did this, the compilers changed to brew:
$ brew --env CC: /usr/bin/clang CXX: /usr/bin/clang++ => /usr/bin/clang LD: /usr/bin/clang CFLAGS: -Os -w -pipe -march=native -Qunused-arguments CXXFLAGS: -Os -w -pipe -march=native -Qunused-arguments MAKEFLAGS: -j4
The brew installation is now much better:
$ which git /usr/local/bin/git $ file /usr/local/bin/git /usr/local/bin/git: Mach-O 64-bit executable x86_64
tdewell
source share