标签: profiling bazel
在我目前的项目中,我正在使用Bazel进行长时间的“干净构建”。
我们建议采取哪些步骤来诊断此问题?
答案 0 :(得分:7)
尝试使用--profile
--profile
语法为bazel build --profile file //my:target
bazel build --profile file //my:target
然后,您可以使用bazel analyze-profile file获取分析信息摘要,并使用bazel analyze-profile --html file
bazel analyze-profile file
bazel analyze-profile --html file