aboutsummaryrefslogtreecommitdiff
path: root/clang/docs
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
commita97c4e3eee82208b3e96b7d6c1d1aa1aa3be864d (patch)
treeee8dcb41d0d41a60610ca573c8d4e177310d38bd /clang/docs
parent96a7860f7917a3568b63e25813ff2079d5a39e93 (diff)
Release notes: Mention clang-cl's /Zc:dllexportInlines- flag
llvm-svn: 346640
Diffstat (limited to 'clang/docs')
-rw-r--r--clang/docs/ReleaseNotes.rst5
1 files changed, 5 insertions, 0 deletions
diff --git a/clang/docs/ReleaseNotes.rst b/clang/docs/ReleaseNotes.rst
index eccc78ddc1a1..09f656815d43 100644
--- a/clang/docs/ReleaseNotes.rst
+++ b/clang/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.
- ...