clangd broke because it can't look through symlinks. compile_commands manipulation does not fix it, clangd configuration does not fix it, a vfs overlay does not fix it, and while a combination of those can fix it with a bind mount in place that's just too cursed to even consider clangd bug: https://github.com/llvm/llvm-project/issues/116877 Change-Id: I8e3e8489548eb3a7aa65ac9d12a5ec8abf814aec
71 lines
1.6 KiB
C++
71 lines
1.6 KiB
C++
#pragma once
|
|
///@file
|
|
|
|
#include "lix/libutil/args.hh"
|
|
#include "lix/libutil/repair-flag.hh"
|
|
|
|
namespace nix {
|
|
|
|
//static constexpr auto commonArgsCategory = "Miscellaneous common options";
|
|
static constexpr auto loggingCategory = "Logging-related options";
|
|
static constexpr auto miscCategory = "Miscellaneous global options";
|
|
|
|
class MixCommonArgs : public virtual Args
|
|
{
|
|
void initialFlagsProcessed() override;
|
|
public:
|
|
std::string programName;
|
|
MixCommonArgs(const std::string & programName);
|
|
protected:
|
|
virtual void pluginsInited() {}
|
|
};
|
|
|
|
struct MixDryRun : virtual Args
|
|
{
|
|
bool dryRun = false;
|
|
|
|
MixDryRun()
|
|
{
|
|
addFlag({
|
|
.longName = "dry-run",
|
|
.description = "Show what this command would do without doing it.",
|
|
//.category = commonArgsCategory,
|
|
.handler = {&dryRun, true},
|
|
});
|
|
}
|
|
};
|
|
|
|
struct MixJSON : virtual Args
|
|
{
|
|
bool json = false;
|
|
|
|
MixJSON()
|
|
{
|
|
addFlag({
|
|
.longName = "json",
|
|
.description = "Produce output in JSON format, suitable for consumption by another program.",
|
|
//.category = commonArgsCategory,
|
|
.handler = {&json, true},
|
|
});
|
|
}
|
|
};
|
|
|
|
struct MixRepair : virtual Args
|
|
{
|
|
RepairFlag repair = NoRepair;
|
|
|
|
MixRepair()
|
|
{
|
|
addFlag({
|
|
.longName = "repair",
|
|
.description =
|
|
"During evaluation, rewrite missing or corrupted files in the Nix store. "
|
|
"During building, rebuild missing or corrupted store paths.",
|
|
.category = miscCategory,
|
|
.handler = {&repair, Repair},
|
|
});
|
|
}
|
|
};
|
|
|
|
}
|