C++-Standard-Libraries: note Xcode 8's libstdc++ deprecation

This commit is contained in:
Dominyk Tiller 2016-09-14 17:27:48 +01:00
parent 9d17e6faaa
commit 06145dd6d0
No known key found for this signature in database
GPG Key ID: FE19AEFCF658C6F6

View File

@ -1,7 +1,7 @@
# C++ Standard Libraries # C++ Standard Libraries
There are two C++ standard libraries supported by Apple compilers. There are two C++ standard libraries supported by Apple compilers.
The default for 10.8 and earlier is **libstdc++**, supported by Apple GCC compilers, GNU GCC compilers, and clang. The default for 10.8 and earlier is **libstdc++**, supported by Apple GCC compilers, GNU GCC compilers, and clang. This was marked deprecated with a warning during compile as of Xcode 8.
The default for 10.9 is **libc++**, which is also the default for clang on older platforms when building C++11 code. The default for 10.9 is **libc++**, which is also the default for clang on older platforms when building C++11 code.