mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-24 08:35:08 +00:00
Make clang.excludeArgs accept glob patterns
This commit is contained in:
parent
cff00a8711
commit
7e752c1901
@ -96,9 +96,8 @@ struct Config {
|
|||||||
} capabilities;
|
} capabilities;
|
||||||
|
|
||||||
struct Clang {
|
struct Clang {
|
||||||
// Arguments that should be excluded, e.g. ["-fopenmp", "-Wall"]
|
// Arguments matching any of these glob patterns will be excluded, e.g.
|
||||||
//
|
// ["-fopenmp", "-m*", "-Wall"].
|
||||||
// e.g. If your project is built by GCC and has an option thag clang does not understand.
|
|
||||||
std::vector<std::string> excludeArgs;
|
std::vector<std::string> excludeArgs;
|
||||||
|
|
||||||
// Additional arguments to pass to clang.
|
// Additional arguments to pass to clang.
|
||||||
|
@ -30,6 +30,7 @@ limitations under the License.
|
|||||||
#include <clang/Tooling/CompilationDatabase.h>
|
#include <clang/Tooling/CompilationDatabase.h>
|
||||||
#include <llvm/ADT/STLExtras.h>
|
#include <llvm/ADT/STLExtras.h>
|
||||||
#include <llvm/ADT/StringSet.h>
|
#include <llvm/ADT/StringSet.h>
|
||||||
|
#include <llvm/Support/GlobPattern.h>
|
||||||
#include <llvm/Support/LineIterator.h>
|
#include <llvm/Support/LineIterator.h>
|
||||||
#include <llvm/Support/Program.h>
|
#include <llvm/Support/Program.h>
|
||||||
|
|
||||||
@ -81,10 +82,22 @@ enum OptionClass {
|
|||||||
struct ProjectProcessor {
|
struct ProjectProcessor {
|
||||||
Project::Folder &folder;
|
Project::Folder &folder;
|
||||||
std::unordered_set<size_t> command_set;
|
std::unordered_set<size_t> command_set;
|
||||||
StringSet<> excludeArgs;
|
StringSet<> exclude_args;
|
||||||
|
std::vector<GlobPattern> exclude_globs;
|
||||||
|
|
||||||
ProjectProcessor(Project::Folder &folder) : folder(folder) {
|
ProjectProcessor(Project::Folder &folder) : folder(folder) {
|
||||||
for (auto &arg : g_config->clang.excludeArgs)
|
for (auto &arg : g_config->clang.excludeArgs)
|
||||||
excludeArgs.insert(arg);
|
if (arg.find_first_of("?*[") == std::string::npos)
|
||||||
|
exclude_args.insert(arg);
|
||||||
|
else if (Expected<GlobPattern> glob_or_err = GlobPattern::create(arg))
|
||||||
|
exclude_globs.push_back(std::move(*glob_or_err));
|
||||||
|
else
|
||||||
|
LOG_S(WARNING) << toString(glob_or_err.takeError());
|
||||||
|
}
|
||||||
|
|
||||||
|
bool ExcludesArg(StringRef arg) {
|
||||||
|
return exclude_args.count(arg) || any_of(exclude_globs,
|
||||||
|
[&](const GlobPattern &glob) { return glob.match(arg); });
|
||||||
}
|
}
|
||||||
|
|
||||||
// Expand %c %cpp ... in .ccls
|
// Expand %c %cpp ... in .ccls
|
||||||
@ -115,7 +128,7 @@ struct ProjectProcessor {
|
|||||||
}
|
}
|
||||||
if (ok)
|
if (ok)
|
||||||
args.push_back(A.data());
|
args.push_back(A.data());
|
||||||
} else if (!excludeArgs.count(A)) {
|
} else if (!ExcludesArg(A)) {
|
||||||
args.push_back(arg);
|
args.push_back(arg);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -396,7 +409,7 @@ void Project::LoadDirectory(const std::string &root, Project::Folder &folder) {
|
|||||||
entry.args.reserve(args.size());
|
entry.args.reserve(args.size());
|
||||||
for (std::string &arg : args) {
|
for (std::string &arg : args) {
|
||||||
DoPathMapping(arg);
|
DoPathMapping(arg);
|
||||||
if (!proc.excludeArgs.count(arg))
|
if (!proc.ExcludesArg(arg))
|
||||||
entry.args.push_back(Intern(arg));
|
entry.args.push_back(Intern(arg));
|
||||||
}
|
}
|
||||||
entry.compdb_size = entry.args.size();
|
entry.compdb_size = entry.args.size();
|
||||||
|
Loading…
Reference in New Issue
Block a user