summaryrefslogtreecommitdiff
path: root/docs/ReleaseNotes.rst
diff options
context:
space:
mode:
authorIlya Biryukov <ibiryukov@google.com>2018-12-05 18:32:05 +0000
committerIlya Biryukov <ibiryukov@google.com>2018-12-05 18:32:05 +0000
commitbef1977371e191a465834ccbd6cce092bfe3c114 (patch)
tree2f9cbd483a191e0f18a9bbdee0844937f4eaaff3 /docs/ReleaseNotes.rst
parent6a052af374e1ee7fb26132ec54d48bcf7523af76 (diff)
downloadclang-bef1977371e191a465834ccbd6cce092bfe3c114.tar.gz
Mention changes to libc++ include dir lookup in release notes.
Summary: The change itself landed as r348365, see the comment for more details. Reviewers: arphaman, EricWF Reviewed By: arphaman Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D55322 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@348394 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ReleaseNotes.rst')
-rw-r--r--docs/ReleaseNotes.rst7
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 9af3df2e3d..2948812dc0 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -120,6 +120,13 @@ Non-comprehensive list of changes in this release
entirely from Clang. The feature did not properly work with about 1/3 of the
possible tokens available and was unmaintained.
+- The internals of libc++ include directory detection on MacOS have changed.
+ Instead of running a search based on the ``-resource-dir`` flag, the search
+ is now based on the path of the compiler in the filesystem. The default
+ behaviour should not change. However, if you override ``-resource-dir``
+ manually and rely on the old behaviour you will need to add appropriate
+ compiler flags for finding the corresponding libc++ include directory.
+
New Compiler Flags
------------------