diff options
author | mj-xmr <mjxmr@protonmail.com> | 2020-11-01 09:36:10 +0100 |
---|---|---|
committer | mj-xmr <mjxmr@protonmail.com> | 2020-12-08 08:05:56 +0100 |
commit | 9f502108bfb056575bfc49d60ffc5c7aed05728e (patch) | |
tree | 07b6c6915ce77e1962bb0a19f0fb625153eb305b /CMakeLists.txt | |
parent | Merge pull request #7072 (diff) | |
download | monero-9f502108bfb056575bfc49d60ffc5c7aed05728e.tar.xz |
Add ClangBuildAnalyzer under utils/health for analyzing build times
Diffstat (limited to '')
-rw-r--r-- | CMakeLists.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 050269218..c09b9b39a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -54,6 +54,13 @@ if (USE_CCACHE) else() message(STATUS "ccache deselected") endif() +option (USE_COMPILATION_TIME_PROFILER "Use compilation time profiler (for CLang >= 9 only)" OFF) +if (USE_COMPILATION_TIME_PROFILER) + if (NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") + message(FATAL_ERROR "The flag USE_COMPILATION_TIME_PROFILER is meant to be set only for CLang compiler!") + endif() + add_compile_options("-ftime-trace") +endif() if (${CMAKE_VERSION} VERSION_GREATER "3.0.0" AND CMAKE_MAKE_PROGRAM MATCHES "ninja") set(MONERO_PARALLEL_COMPILE_JOBS "" CACHE STRING "The maximum number of concurrent compilation jobs.") |