forked from OSchip/llvm-project
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
This commit is contained in:
parent
332c100562
commit
09c2625108
|
@ -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
|
||||
|
|
|
@ -212,6 +212,12 @@ def _SLASH_Zc_alignedNew : CLFlag<"Zc:alignedNew">,
|
|||
def _SLASH_Zc_alignedNew_ : CLFlag<"Zc:alignedNew-">,
|
||||
HelpText<"Disable C++17 aligned allocation functions">,
|
||||
Alias<fno_aligned_allocation>;
|
||||
def _SLASH_Zc_char8_t : CLFlag<"Zc:char8_t">,
|
||||
HelpText<"Enable char8_t from C++2a">,
|
||||
Alias<fchar8__t>;
|
||||
def _SLASH_Zc_char8_t_ : CLFlag<"Zc:char8_t-">,
|
||||
HelpText<"Disable char8_t from c++2a">,
|
||||
Alias<fno_char8__t>;
|
||||
def _SLASH_Zc_strictStrings : CLFlag<"Zc:strictStrings">,
|
||||
HelpText<"Treat string literals as const">, Alias<W_Joined>,
|
||||
AliasArgs<["error=c++11-compat-deprecated-writable-strings"]>;
|
||||
|
|
|
@ -326,6 +326,13 @@
|
|||
// RUN: %clang_cl -c /Zc:twoPhase -### -- %s 2>&1 | FileCheck -check-prefix=DELAYEDOFF %s
|
||||
// DELAYEDOFF-NOT: "-fdelayed-template-parsing"
|
||||
|
||||
// RUN: %clang_cl -c -### /std:c++latest -- %s 2>&1 | FileCheck -check-prefix CHECK-LATEST-CHAR8_T %s
|
||||
// CHECK-LATEST-CHAR8_T-NOT: "-fchar8_t"
|
||||
// RUN: %clang_cl -c -### /Zc:char8_t -- %s 2>&1 | FileCheck -check-prefix CHECK-CHAR8_T %s
|
||||
// CHECK-CHAR8_T: "-fchar8_t"
|
||||
// RUN: %clang_cl -c -### /Zc:char8_t- -- %s 2>&1 | FileCheck -check-prefix CHECK-CHAR8_T_ %s
|
||||
// CHECK-CHAR8_T_: "-fno-char8_t"
|
||||
|
||||
// For some warning ids, we can map from MSVC warning to Clang warning.
|
||||
// RUN: %clang_cl -wd4005 -wd4100 -wd4910 -wd4996 -### -- %s 2>&1 | FileCheck -check-prefix=Wno %s
|
||||
// Wno: "-cc1"
|
||||
|
|
Loading…
Reference in New Issue