diff options
author | Chris Bieneman <chris.bieneman@me.com> | 2019-08-14 16:49:52 +0000 |
---|---|---|
committer | Chris Bieneman <chris.bieneman@me.com> | 2019-08-14 16:49:52 +0000 |
commit | a80a3a2b239591f62422686dae9071df89a3b339 (patch) | |
tree | c65c20c473e03afef7987748bb17dd3ec53b9e21 | |
parent | cc2bebe039374d6f0c8251ac322f8f7148d85950 (diff) | |
download | bcm5719-llvm-a80a3a2b239591f62422686dae9071df89a3b339.tar.gz bcm5719-llvm-a80a3a2b239591f62422686dae9071df89a3b339.zip |
Document clang-cpp in the release notes for clang
This patch adds a line in the release notes about the new clang-cpp library and the CMake option to force clang to link against it.
llvm-svn: 368874
-rw-r--r-- | clang/docs/ReleaseNotes.rst | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst index 87245c8fb5f..f3291137bca 100644 --- a/clang/docs/ReleaseNotes.rst +++ b/clang/docs/ReleaseNotes.rst @@ -157,7 +157,15 @@ release of Clang. Users of the build system should adjust accordingly. install-clang-headers target now installs clang's API headers (corresponding to its libraries), which is consistent with the install-llvm-headers target. -- ... +- In 9.0.0 and later Clang added a new target, clang-cpp, which generates a + shared library comprised of all the clang component libraries and exporting + the clang C++ APIs. Additionally the build system gained the new + "CLANG_LINK_CLANG_DYLIB" option, which defaults Off, and when set to On, will + force clang (and clang-based tools) to link the clang-cpp library instead of + statically linking clang's components. This option will reduce the size of + binary distributions at the expense of compiler performance. + +- ... AST Matchers ------------ |