From: Hans Wennborg Date: Mon, 12 Nov 2018 08:42:21 +0000 (+0000) Subject: Release notes: Mention clang-cl's /Zc:dllexportInlines- flag X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d0638b0ec1226c4bd763e6efe0f67506a2768cda;p=clang 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 --- 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 + `_ for more info. - ...