Use libprocstat to find garbage collector roots on FreeBSD. Tested working on a FreeBSD machine, although there is no CI yet Change-Id: Id36bac8c3de6cc4de94e2d76e9663dd4b76068a9
73 lines
2.1 KiB
C++
73 lines
2.1 KiB
C++
#include "local-store.hh"
|
|
#include "build/local-derivation-goal.hh"
|
|
|
|
#if __linux__
|
|
#include "platform/linux.hh"
|
|
#elif __APPLE__
|
|
#include "platform/darwin.hh"
|
|
#elif __FreeBSD__
|
|
#include "platform/freebsd.hh"
|
|
#else
|
|
#include "platform/fallback.hh"
|
|
#endif
|
|
|
|
namespace nix {
|
|
std::shared_ptr<LocalStore> LocalStore::makeLocalStore(const Params & params)
|
|
{
|
|
#if __linux__
|
|
return std::shared_ptr<LocalStore>(new LinuxLocalStore(params));
|
|
#elif __APPLE__
|
|
return std::shared_ptr<LocalStore>(new DarwinLocalStore(params));
|
|
#elif __FreeBSD__
|
|
return std::shared_ptr<LocalStore>(new FreeBSDLocalStore(params));
|
|
#else
|
|
return std::shared_ptr<LocalStore>(new FallbackLocalStore(params));
|
|
#endif
|
|
}
|
|
|
|
std::shared_ptr<LocalDerivationGoal> LocalDerivationGoal::makeLocalDerivationGoal(
|
|
const StorePath & drvPath,
|
|
const OutputsSpec & wantedOutputs,
|
|
Worker & worker,
|
|
BuildMode buildMode
|
|
)
|
|
{
|
|
#if __linux__
|
|
return std::make_shared<LinuxLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode);
|
|
#elif __APPLE__
|
|
return std::make_shared<DarwinLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode);
|
|
#elif __FreeBSD__
|
|
return std::make_shared<FreeBSDLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode);
|
|
#else
|
|
return std::make_shared<FallbackLocalDerivationGoal>(drvPath, wantedOutputs, worker, buildMode);
|
|
#endif
|
|
}
|
|
|
|
std::shared_ptr<LocalDerivationGoal> LocalDerivationGoal::makeLocalDerivationGoal(
|
|
const StorePath & drvPath,
|
|
const BasicDerivation & drv,
|
|
const OutputsSpec & wantedOutputs,
|
|
Worker & worker,
|
|
BuildMode buildMode
|
|
)
|
|
{
|
|
#if __linux__
|
|
return std::make_shared<LinuxLocalDerivationGoal>(
|
|
drvPath, drv, wantedOutputs, worker, buildMode
|
|
);
|
|
#elif __APPLE__
|
|
return std::make_shared<DarwinLocalDerivationGoal>(
|
|
drvPath, drv, wantedOutputs, worker, buildMode
|
|
);
|
|
#elif __FreeBSD__
|
|
return std::make_shared<FreeBSDLocalDerivationGoal>(
|
|
drvPath, drv, wantedOutputs, worker, buildMode
|
|
);
|
|
#else
|
|
return std::make_shared<FallbackLocalDerivationGoal>(
|
|
drvPath, drv, wantedOutputs, worker, buildMode
|
|
);
|
|
#endif
|
|
}
|
|
}
|