[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
//===--- CompileCommands.cpp ----------------------------------------------===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "CompileCommands.h"
|
[clangd] Move non-clang base pieces into separate support/ lib. NFCI
Summary:
This enforces layering, reduces a sprawling clangd/ directory, and makes life
easier for embedders.
Reviewers: kbobyrev
Subscribers: mgorny, ilya-biryukov, javed.absar, MaskRay, jkorous, arphaman, jfb, kadircet, usaxena95, cfe-commits
Tags: #clang
Differential Revision: https://reviews.llvm.org/D79014
2020-04-28 23:49:17 +08:00
|
|
|
#include "support/Logger.h"
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
#include "clang/Frontend/CompilerInvocation.h"
|
|
|
|
#include "clang/Tooling/ArgumentsAdjusters.h"
|
|
|
|
#include "llvm/Support/FileSystem.h"
|
|
|
|
#include "llvm/Support/FileUtilities.h"
|
|
|
|
#include "llvm/Support/MemoryBuffer.h"
|
|
|
|
#include "llvm/Support/Path.h"
|
|
|
|
#include "llvm/Support/Program.h"
|
|
|
|
|
|
|
|
namespace clang {
|
|
|
|
namespace clangd {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
// Query apple's `xcrun` launcher, which is the source of truth for "how should"
|
|
|
|
// clang be invoked on this system.
|
|
|
|
llvm::Optional<std::string> queryXcrun(llvm::ArrayRef<llvm::StringRef> Argv) {
|
|
|
|
auto Xcrun = llvm::sys::findProgramByName("xcrun");
|
|
|
|
if (!Xcrun) {
|
|
|
|
log("Couldn't find xcrun. Hopefully you have a non-apple toolchain...");
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
llvm::SmallString<64> OutFile;
|
|
|
|
llvm::sys::fs::createTemporaryFile("clangd-xcrun", "", OutFile);
|
|
|
|
llvm::FileRemover OutRemover(OutFile);
|
|
|
|
llvm::Optional<llvm::StringRef> Redirects[3] = {
|
|
|
|
/*stdin=*/{""}, /*stdout=*/{OutFile}, /*stderr=*/{""}};
|
|
|
|
vlog("Invoking {0} to find clang installation", *Xcrun);
|
|
|
|
int Ret = llvm::sys::ExecuteAndWait(*Xcrun, Argv,
|
|
|
|
/*Env=*/llvm::None, Redirects,
|
|
|
|
/*SecondsToWait=*/10);
|
|
|
|
if (Ret != 0) {
|
|
|
|
log("xcrun exists but failed with code {0}. "
|
|
|
|
"If you have a non-apple toolchain, this is OK. "
|
|
|
|
"Otherwise, try xcode-select --install.",
|
|
|
|
Ret);
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto Buf = llvm::MemoryBuffer::getFile(OutFile);
|
|
|
|
if (!Buf) {
|
|
|
|
log("Can't read xcrun output: {0}", Buf.getError().message());
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
StringRef Path = Buf->get()->getBuffer().trim();
|
|
|
|
if (Path.empty()) {
|
|
|
|
log("xcrun produced no output");
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
return Path.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Resolve symlinks if possible.
|
|
|
|
std::string resolve(std::string Path) {
|
|
|
|
llvm::SmallString<128> Resolved;
|
|
|
|
if (llvm::sys::fs::real_path(Path, Resolved)) {
|
|
|
|
log("Failed to resolve possible symlink {0}", Path);
|
|
|
|
return Path;
|
|
|
|
}
|
2020-01-29 03:23:46 +08:00
|
|
|
return std::string(Resolved.str());
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Get a plausible full `clang` path.
|
|
|
|
// This is used in the fallback compile command, or when the CDB returns a
|
|
|
|
// generic driver with no path.
|
|
|
|
std::string detectClangPath() {
|
|
|
|
// The driver and/or cc1 sometimes depend on the binary name to compute
|
|
|
|
// useful things like the standard library location.
|
|
|
|
// We need to emulate what clang on this system is likely to see.
|
|
|
|
// cc1 in particular looks at the "real path" of the running process, and
|
|
|
|
// so if /usr/bin/clang is a symlink, it sees the resolved path.
|
|
|
|
// clangd doesn't have that luxury, so we resolve symlinks ourselves.
|
|
|
|
|
|
|
|
// On Mac, `which clang` is /usr/bin/clang. It runs `xcrun clang`, which knows
|
|
|
|
// where the real clang is kept. We need to do the same thing,
|
|
|
|
// because cc1 (not the driver!) will find libc++ relative to argv[0].
|
|
|
|
#ifdef __APPLE__
|
|
|
|
if (auto MacClang = queryXcrun({"xcrun", "--find", "clang"}))
|
|
|
|
return resolve(std::move(*MacClang));
|
|
|
|
#endif
|
|
|
|
// On other platforms, just look for compilers on the PATH.
|
|
|
|
for (const char *Name : {"clang", "gcc", "cc"})
|
|
|
|
if (auto PathCC = llvm::sys::findProgramByName(Name))
|
|
|
|
return resolve(std::move(*PathCC));
|
|
|
|
// Fallback: a nonexistent 'clang' binary next to clangd.
|
|
|
|
static int Dummy;
|
|
|
|
std::string ClangdExecutable =
|
|
|
|
llvm::sys::fs::getMainExecutable("clangd", (void *)&Dummy);
|
|
|
|
SmallString<128> ClangPath;
|
|
|
|
ClangPath = llvm::sys::path::parent_path(ClangdExecutable);
|
|
|
|
llvm::sys::path::append(ClangPath, "clang");
|
2020-01-29 03:23:46 +08:00
|
|
|
return std::string(ClangPath.str());
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// On mac, /usr/bin/clang sets SDKROOT and then invokes the real clang.
|
|
|
|
// The effect of this is to set -isysroot correctly. We do the same.
|
|
|
|
const llvm::Optional<std::string> detectSysroot() {
|
|
|
|
#ifndef __APPLE__
|
|
|
|
return llvm::None;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// SDKROOT overridden in environment, respect it. Driver will set isysroot.
|
|
|
|
if (::getenv("SDKROOT"))
|
|
|
|
return llvm::None;
|
|
|
|
return queryXcrun({"xcrun", "--show-sdk-path"});
|
|
|
|
return llvm::None;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string detectStandardResourceDir() {
|
|
|
|
static int Dummy; // Just an address in this process.
|
|
|
|
return CompilerInvocation::GetResourcesPath("clangd", (void *)&Dummy);
|
|
|
|
}
|
|
|
|
|
2020-06-10 04:54:42 +08:00
|
|
|
// The path passed to argv[0] is important:
|
|
|
|
// - its parent directory is Driver::Dir, used for library discovery
|
|
|
|
// - its basename affects CLI parsing (clang-cl) and other settings
|
|
|
|
// Where possible it should be an absolute path with sensible directory, but
|
|
|
|
// with the original basename.
|
|
|
|
static std::string resolveDriver(llvm::StringRef Driver, bool FollowSymlink,
|
|
|
|
llvm::Optional<std::string> ClangPath) {
|
|
|
|
auto SiblingOf = [&](llvm::StringRef AbsPath) {
|
|
|
|
llvm::SmallString<128> Result = llvm::sys::path::parent_path(AbsPath);
|
|
|
|
llvm::sys::path::append(Result, llvm::sys::path::filename(Driver));
|
|
|
|
return Result.str().str();
|
|
|
|
};
|
|
|
|
|
|
|
|
// First, eliminate relative paths.
|
|
|
|
std::string Storage;
|
|
|
|
if (!llvm::sys::path::is_absolute(Driver)) {
|
|
|
|
// If the driver is a generic like "g++" with no path, add clang dir.
|
|
|
|
if (ClangPath &&
|
|
|
|
(Driver == "clang" || Driver == "clang++" || Driver == "gcc" ||
|
|
|
|
Driver == "g++" || Driver == "cc" || Driver == "c++")) {
|
|
|
|
return SiblingOf(*ClangPath);
|
|
|
|
}
|
|
|
|
// Otherwise try to look it up on PATH. This won't change basename.
|
|
|
|
auto Absolute = llvm::sys::findProgramByName(Driver);
|
|
|
|
if (Absolute && llvm::sys::path::is_absolute(*Absolute))
|
|
|
|
Driver = Storage = std::move(*Absolute);
|
|
|
|
else if (ClangPath) // If we don't find it, use clang dir again.
|
|
|
|
return SiblingOf(*ClangPath);
|
|
|
|
else // Nothing to do: can't find the command and no detected dir.
|
|
|
|
return Driver.str();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Now we have an absolute path, but it may be a symlink.
|
|
|
|
assert(llvm::sys::path::is_absolute(Driver));
|
|
|
|
if (FollowSymlink) {
|
|
|
|
llvm::SmallString<256> Resolved;
|
|
|
|
if (!llvm::sys::fs::real_path(Driver, Resolved))
|
|
|
|
return SiblingOf(Resolved);
|
|
|
|
}
|
|
|
|
return Driver.str();
|
|
|
|
}
|
|
|
|
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
} // namespace
|
|
|
|
|
|
|
|
CommandMangler CommandMangler::detect() {
|
|
|
|
CommandMangler Result;
|
|
|
|
Result.ClangPath = detectClangPath();
|
|
|
|
Result.ResourceDir = detectStandardResourceDir();
|
|
|
|
Result.Sysroot = detectSysroot();
|
|
|
|
return Result;
|
|
|
|
}
|
|
|
|
|
|
|
|
CommandMangler CommandMangler::forTests() {
|
|
|
|
return CommandMangler();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CommandMangler::adjust(std::vector<std::string> &Cmd) const {
|
|
|
|
// Check whether the flag exists, either as -flag or -flag=*
|
|
|
|
auto Has = [&](llvm::StringRef Flag) {
|
|
|
|
for (llvm::StringRef Arg : Cmd) {
|
|
|
|
if (Arg.consume_front(Flag) && (Arg.empty() || Arg[0] == '='))
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
};
|
|
|
|
|
|
|
|
// clangd should not write files to disk, including dependency files
|
|
|
|
// requested on the command line.
|
|
|
|
Cmd = tooling::getClangStripDependencyFileAdjuster()(Cmd, "");
|
|
|
|
// Strip plugin related command line arguments. Clangd does
|
|
|
|
// not support plugins currently. Therefore it breaks if
|
|
|
|
// compiler tries to load plugins.
|
|
|
|
Cmd = tooling::getStripPluginsAdjuster()(Cmd, "");
|
|
|
|
Cmd = tooling::getClangSyntaxOnlyAdjuster()(Cmd, "");
|
|
|
|
|
|
|
|
if (ResourceDir && !Has("-resource-dir"))
|
|
|
|
Cmd.push_back(("-resource-dir=" + *ResourceDir));
|
|
|
|
|
2020-01-09 06:01:59 +08:00
|
|
|
// Don't set `-isysroot` if it is already set or if `--sysroot` is set.
|
|
|
|
// `--sysroot` is a superset of the `-isysroot` argument.
|
|
|
|
if (Sysroot && !Has("-isysroot") && !Has("--sysroot")) {
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
Cmd.push_back("-isysroot");
|
|
|
|
Cmd.push_back(*Sysroot);
|
|
|
|
}
|
|
|
|
|
2020-06-10 04:54:42 +08:00
|
|
|
if (!Cmd.empty()) {
|
|
|
|
bool FollowSymlink = !Has("-no-canonical-prefixes");
|
|
|
|
Cmd.front() =
|
|
|
|
(FollowSymlink ? ResolvedDrivers : ResolvedDriversNoFollow)
|
|
|
|
.get(Cmd.front(), [&, this] {
|
|
|
|
return resolveDriver(Cmd.front(), FollowSymlink, ClangPath);
|
|
|
|
});
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-10 04:54:42 +08:00
|
|
|
CommandMangler::operator clang::tooling::ArgumentsAdjuster() && {
|
|
|
|
// ArgumentsAdjuster is a std::function and so must be copyable.
|
|
|
|
return [Mangler = std::make_shared<CommandMangler>(std::move(*this))](
|
|
|
|
const std::vector<std::string> &Args, llvm::StringRef File) {
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
auto Result = Args;
|
2020-06-10 04:54:42 +08:00
|
|
|
Mangler->adjust(Result);
|
[clangd] (take 2) Try harder to find a plausible `clang` as argv0, particularly on Mac.
Summary:
This was originally committed in 88bccded8fa169481fa367debf5ec615640635a1,
and reverted in 93f77617abba512d2861e2fc50ce385883f587b6.
This version is now much more testable: the "detect toolchain properties" part
is still not tested but also not active in tests.
All the command manipulation based on the detected properties is
directly tested, and also not active in other tests.
Fixes https://github.com/clangd/clangd/issues/211
Fixes https://github.com/clangd/clangd/issues/178
Reviewers: kbobyrev, ilya-biryukov
Subscribers: mgorny, ormris, cfe-commits, usaxena95, kadircet, arphaman, jkorous, MaskRay
Tags: #clang
Differential Revision: https://reviews.llvm.org/D71029
2019-11-30 02:37:48 +08:00
|
|
|
return Result;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace clangd
|
|
|
|
} // namespace clang
|