Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where are libc++ headers located on Mac OS X Mavericks?

I'd like to take a look at the headers and want to know where they are.

like image 476
Tyler Brock Avatar asked Dec 30 '13 22:12

Tyler Brock


Video Answer


1 Answers

After you install Xcode it's located here:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/c++/v1

Mac OS X 10.9+ no longer uses GCC/libstdc++ but uses libc++ and Clang.

Update: After the XCode 6.0.1 update the headers are now located here:

/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include/c++/v1
like image 122
Tyler Brock Avatar answered Sep 22 '22 12:09

Tyler Brock