[PATCH] D57878: [clangd] Use Dex for dynamic index by default.

Eric Liu via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Feb 7 07:34:25 PST 2019


ioeric updated this revision to Diff 185762.
ioeric added a comment.

- Keep the option for now.


Repository:
  rCTE Clang Tools Extra

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D57878/new/

https://reviews.llvm.org/D57878

Files:
  clangd/tool/ClangdMain.cpp


Index: clangd/tool/ClangdMain.cpp
===================================================================
--- clangd/tool/ClangdMain.cpp
+++ clangd/tool/ClangdMain.cpp
@@ -31,7 +31,7 @@
 static llvm::cl::opt<bool>
     UseDex("use-dex-index",
            llvm::cl::desc("Use experimental Dex dynamic index."),
-           llvm::cl::init(false), llvm::cl::Hidden);
+           llvm::cl::init(true), llvm::cl::Hidden);
 
 static llvm::cl::opt<Path> CompileCommandsDir(
     "compile-commands-dir",


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D57878.185762.patch
Type: text/x-patch
Size: 492 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20190207/5f33a729/attachment.bin>


More information about the cfe-commits mailing list