Compiling git master with MacOS X 10.9 fails with STL link errors. Apparently Apple changed in this release to use their own libc++ instead of libstdc++ and it's not compatible. It can be fixed like so:
./configure CXXFLAGS='-stdlib=libstdc++'
Compiling git master with MacOS X 10.9 fails with STL link errors. Apparently Apple changed in this release to use their own libc++ instead of libstdc++ and it's not compatible. It can be fixed like so:
./configure CXXFLAGS='-stdlib=libstdc++'