[PATCH] D52976: [clangd] Update the out-of-date yaml-symbol-file flag in clangd.
Haojian Wu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Mon Oct 8 03:46:42 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL343963: [clangd] Update the out-of-date yaml-symbol-file flag in clangd. (authored by hokein, committed by ).
Herald added a subscriber: llvm-commits.
Repository:
rL LLVM
https://reviews.llvm.org/D52976
Files:
clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
Index: clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
===================================================================
--- clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
+++ clang-tools-extra/trunk/clangd/tool/ClangdMain.cpp
@@ -158,11 +158,11 @@
"an include line will be inserted or not."),
llvm::cl::init(true));
-static llvm::cl::opt<Path> YamlSymbolFile(
- "yaml-symbol-file",
+static llvm::cl::opt<Path> IndexFile(
+ "index-file",
llvm::cl::desc(
- "YAML-format global symbol file to build the static index. Clangd will "
- "use the static index for global code completion.\n"
+ "Index file to build the static index. The file must have been created "
+ "by a compatible clangd-index.\n"
"WARNING: This option is experimental only, and will be removed "
"eventually. Don't rely on it."),
llvm::cl::init(""), llvm::cl::Hidden);
@@ -288,12 +288,12 @@
Opts.BuildDynamicSymbolIndex = EnableIndex;
std::unique_ptr<SymbolIndex> StaticIdx;
std::future<void> AsyncIndexLoad; // Block exit while loading the index.
- if (EnableIndex && !YamlSymbolFile.empty()) {
+ if (EnableIndex && !IndexFile.empty()) {
// Load the index asynchronously. Meanwhile SwapIndex returns no results.
SwapIndex *Placeholder;
StaticIdx.reset(Placeholder = new SwapIndex(llvm::make_unique<MemIndex>()));
AsyncIndexLoad = runAsync<void>([Placeholder, &Opts] {
- if (auto Idx = loadIndex(YamlSymbolFile, Opts.URISchemes, UseDex))
+ if (auto Idx = loadIndex(IndexFile, Opts.URISchemes, UseDex))
Placeholder->reset(std::move(Idx));
});
if (RunSynchronously)
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52976.168640.patch
Type: text/x-patch
Size: 1687 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20181008/c71f100a/attachment.bin>
More information about the cfe-commits
mailing list