diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-02-28 12:11:32 +0100 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2025-03-10 16:28:59 +0100 |
commit | cc393dfca1bfd0fdc3fe032df5ea54e12f50cb9d (patch) | |
tree | d054d83cbddf11c59cfd8afd233ea006c5746d3e /src/buildtool/main | |
parent | e45883f88fe02906abaee763146aee770e62ef05 (diff) | |
download | justbuild-cc393dfca1bfd0fdc3fe032df5ea54e12f50cb9d.tar.gz |
Profiling: start collecting informations per actions
... so far, which actions where considered, and which of those
were cached.
Diffstat (limited to 'src/buildtool/main')
-rw-r--r-- | src/buildtool/main/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/buildtool/main/main.cpp b/src/buildtool/main/main.cpp index 2f41ca72..108b9798 100644 --- a/src/buildtool/main/main.cpp +++ b/src/buildtool/main/main.cpp @@ -999,7 +999,8 @@ auto main(int argc, char* argv[]) -> int { .apis = &main_apis, .remote_context = &remote_context, .statistics = &stats, - .progress = &progress}; + .progress = &progress, + .profile = profile}; const GraphTraverser::CommandLineArguments traverse_args{ jobs, std::move(arguments.build), |