From 349640e597477f57ab7d4de30f9d0bbc0e21fbd3 Mon Sep 17 00:00:00 2001 From: Klaus Aehlig Date: Mon, 26 May 2025 14:14:20 +0200 Subject: profile: include time of build start When using a serve end point, the analysis phase might take quite long if serve has to actually build a delegated target or, at least, has to synchronize artifacts with the remote end point. Therefore, also record the time the build phase started (if building is requested) as an additional time stamp in the profile. --- src/buildtool/main/main.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/buildtool/main/main.cpp') diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp index 10abfa1a..3da6de93 100644 --- a/src/buildtool/main/main.cpp +++ b/src/buildtool/main/main.cpp @@ -1244,6 +1244,9 @@ auto main(int argc, char* argv[]) -> int { analyse_result->id.ToShortString( Evaluator::GetExpressionLogLimit())); + if (profile != nullptr) { + profile->StartBuild(); + } auto build_result = traverser.BuildAndStage(artifacts, runfiles, -- cgit v1.2.3