[PATCH] D90116: [clangd] Escape Unicode characters to fix Windows builds
Kirill Bobyrev via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Sun Nov 8 23:20:19 PST 2020
kbobyrev updated this revision to Diff 303754.
kbobyrev added a comment.
Rebase on top of master.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D90116/new/
https://reviews.llvm.org/D90116
Files:
llvm/CMakeLists.txt
Index: llvm/CMakeLists.txt
===================================================================
--- llvm/CMakeLists.txt
+++ llvm/CMakeLists.txt
@@ -599,6 +599,9 @@
if (BUILD_SHARED_LIBS)
message(FATAL_ERROR "BUILD_SHARED_LIBS options is not supported on Windows.")
endif()
+ # Force MSVC to read code as UTF-8.
+ add_compile_options("$<$<C_COMPILER_ID:MSVC>:/utf-8>")
+ add_compile_options("$<$<CXX_COMPILER_ID:MSVC>:/utf-8>")
else()
option(LLVM_LINK_LLVM_DYLIB "Link tools against the libllvm dynamic library" OFF)
option(LLVM_BUILD_LLVM_C_DYLIB "Build libllvm-c re-export library (Darwin only)" OFF)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D90116.303754.patch
Type: text/x-patch
Size: 622 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20201109/1eac1381/attachment-0001.bin>
More information about the cfe-commits
mailing list