diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-28 18:26:00 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-05-28 18:26:00 +0000 |
commit | 09c2625108c8d16da32d282d8a10061509c68a9e (patch) | |
tree | 2d3846297904828b310139f896cb411e98a28989 /clang/docs/UsersManual.rst | |
parent | 332c10056227d5da5557f50e8c64dc8814ca56f0 (diff) | |
download | bcm5719-llvm-09c2625108c8d16da32d282d8a10061509c68a9e.tar.gz bcm5719-llvm-09c2625108c8d16da32d282d8a10061509c68a9e.zip |
Driver: support `/Zc:char8_t` and `/Zc:char8_t-`
Update the `cl` emulation to support the `/Zc:char8_t[-]?` options as per the
MSVC 2019.1 toolset. These are aliases for `-fchar8_t` and `-fno-char8_t`.
llvm-svn: 361859
Diffstat (limited to 'clang/docs/UsersManual.rst')
-rw-r--r-- | clang/docs/UsersManual.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/clang/docs/UsersManual.rst b/clang/docs/UsersManual.rst index 88cb72c9b61..c9195e90827 100644 --- a/clang/docs/UsersManual.rst +++ b/clang/docs/UsersManual.rst @@ -3051,6 +3051,8 @@ Execute ``clang-cl /?`` to see a list of supported options: /Yc<filename> Generate a pch file for all code up to and including <filename> /Yu<filename> Load a pch file and use it instead of all code up to and including <filename> /Z7 Enable CodeView debug information in object files + /Zc:char8_t Enable C++2a char8_t type + /Zc:char8_t- Disable C++2a char8_t type /Zc:dllexportInlines- Don't dllexport/dllimport inline member functions of dllexport/import classes /Zc:dllexportInlines dllexport/dllimport inline member functions of dllexport/import classes (default) /Zc:sizedDealloc- Disable C++14 sized global deallocation functions |