aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans Wennborg <hans@hanshq.net>2018-11-12 08:42:21 +0000
committerHans Wennborg <hans@hanshq.net>2018-11-12 08:42:21 +0000
commitd0638b0ec1226c4bd763e6efe0f67506a2768cda (patch)
treede7e3909a7c132b4b1677f0ef4c5a0cbcc72ebdd
parenta9d4cea374e6a41f8021b4b4965c6fdc0a6fd373 (diff)
Release notes: Mention clang-cl's /Zc:dllexportInlines- flag
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@346640 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/ReleaseNotes.rst b/docs/ReleaseNotes.rst
index eccc78ddc1..09f656815d 100644
--- a/docs/ReleaseNotes.rst
+++ b/docs/ReleaseNotes.rst
@@ -102,6 +102,11 @@ Windows Support
filename, a `#pragma hdrstop` inside the source marks the end of the
precompiled code.
+- clang-cl has a new command-line option, ``/Zc:dllexportInlines-``, similar to
+ ``-fvisibility-inlines-hidden`` on non-Windows, that makes class-level
+ `dllexport` and `dllimport` attributes not apply to inline member functions.
+ This can significantly reduce compile and link times. See the `User's Manual
+ <UsersManual.html#the-zc-dllexportinlines-option>`_ for more info.
- ...