summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Bieneman <chris.bieneman@me.com>2019-08-15 16:54:13 +0000
committerChris Bieneman <chris.bieneman@me.com>2019-08-15 16:54:13 +0000
commit8cba689c79a268f1cc6c1812b2c87c454c97a339 (patch)
treecb14fc2e686bb76321b601aeaa6e51eeabe65c9e
parentaafe2ee211d47a16662d2e2581c19a486a5d2479 (diff)
Correcting clang-cpp release not to spcify supported targets.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/branches/release_90@369017 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index 8e06798b71..018bc2a371 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -192,13 +192,13 @@ 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.
+- In 9.0.0 and later Clang added a new target on Linux/Unix systems, 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.
- ...