1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-06 21:41:48 +02:00

Merge remote-tracking branch 'obsidian/split_build_cc' into typed-goal-maps

This commit is contained in:
John Ericson 2020-10-12 20:47:22 +00:00
commit 1b8ebe92dc
33 changed files with 1044 additions and 956 deletions

View file

@ -1,4 +1,8 @@
#include "build.hh"
#include "machines.hh"
#include "worker.hh"
#include "substitution-goal.hh"
#include "derivation-goal.hh"
#include "hook-instance.hh"
#include <poll.h>
@ -449,4 +453,9 @@ void Worker::markContentsGood(const StorePath & path)
pathContentsGoodCache.insert_or_assign(path, true);
}
GoalPtr upcast_goal(std::shared_ptr<SubstitutionGoal> subGoal) {
return subGoal;
}
}