https://github.com/kde/akonadiconsole
Application for debugging Akonadi Resources
https://github.com/kde/akonadiconsole
Last synced: about 2 months ago
JSON representation
Application for debugging Akonadi Resources
- Host: GitHub
- URL: https://github.com/kde/akonadiconsole
- Owner: KDE
- Created: 2016-08-30T08:37:14.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2025-04-17T11:17:38.000Z (2 months ago)
- Last Synced: 2025-04-18T01:47:54.898Z (2 months ago)
- Language: C++
- Homepage: https://invent.kde.org/pim/akonadiconsole
- Size: 6.7 MB
- Stars: 8
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: readme-build-ftime.txt
- License: LICENSES/BSD-3-Clause.txt
Awesome Lists containing this project
README
# Analyzing Build Performance
For debug build time:
We need ClangBuildAnalyzer
`
git clone https://github.com/aras-p/ClangBuildAnalyzer
mkdir build
cd build
cmake -DCMAKE_INSTALL_PREFIX= ../
make install
`## Command line
cmake -preset ftime-trace
ClangBuildAnalyzer --start $PWD/build-ftime-trace
cmake --build --preset ftime-traceClangBuildAnalyzer --stop $PWD/build-ftime-trace build-ftime.txt
ClangBuildAnalyzer --analyze build-ftime.txt > analyze-build-ftime.txt
see https://aras-p.info/blog/2019/09/28/Clang-Build-Analyzer/