compiletools 8.3.0__tar.gz → 8.3.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {compiletools-8.3.0 → compiletools-8.3.2}/PKG-INFO +3 -3
- {compiletools-8.3.0 → compiletools-8.3.2}/pyproject.toml +10 -3
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.cleanup-remote-locks.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.create-documentation.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-backends.rst +3 -2
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-build-docs.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-build-dynamic-library.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-build-static-library.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-build.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-cake.rst +19 -4
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-cleanup-locks.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-commandline.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-compilation-database.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-config.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-cppdeps.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-create-makefile.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-doc.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-filelist.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-findtargets.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-git-sha-report.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-gitroot.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-headertree.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-jobs.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-list-backends.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-list-variants.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-lock-helper.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-magicflags.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-pytest-monitor.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-release.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-termux-install.rst +1 -1
- compiletools-8.3.2/src/compiletools/README.ct-timing-report.rst +193 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-trim-cache.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.ct-watch-build.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/README.profile-ct-cake-worktree.rst +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/build_timer.py +85 -27
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/cake.py +22 -3
- compiletools-8.3.2/src/compiletools/diagnostics.py +78 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/makefile_backend.py +1 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_build_timer.py +115 -3
- compiletools-8.3.2/src/compiletools/test_cake_diagnostics.py +182 -0
- compiletools-8.3.2/src/compiletools/test_diagnostics.py +80 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_headerdeps_extract.py +0 -1
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_slurm_backend.py +213 -18
- compiletools-8.3.2/src/compiletools/test_timing_report.py +456 -0
- compiletools-8.3.2/src/compiletools/test_timing_tui.py +141 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_trim_cache.py +13 -8
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/testhelper.py +1 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/timing_report.py +112 -27
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/timing_tui.py +39 -2
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/trace_backend.py +40 -17
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/trim_cache.py +6 -5
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/version.py +1 -1
- compiletools-8.3.0/src/compiletools/README.ct-timing-report.rst +0 -127
- compiletools-8.3.0/src/compiletools/test_timing_report.py +0 -214
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/create-documentation +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-build +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-build-docs +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-build-dynamic-library +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-build-static-library +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-pytest-monitor +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-release +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-termux-install +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/ct-watch-build +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/profile-ct +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/profile-ct-cake-modes +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/scripts/profile-ct-cake-worktree +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/__init__.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/apptools.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/bazel_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/build_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/build_context.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/build_graph.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/cleanup_locks.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/cleanup_locks_main.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/cmake_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/compilation_database.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/compiler_macros.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/config.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/configutils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/conftest.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/cppdeps.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/blank.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/blank.release.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/clang.debug.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/clang.release.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/ct.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/gcc.debug.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct.conf.d/gcc.release.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ct_lock_helper.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/doc.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/file_analyzer.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/filelist.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/filesystem_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/findtargets.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/git_sha_report.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/git_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/global_hash_registry.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/headerdeps.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/headertree.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/hunter.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/jobs.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/listbackends.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/listvariants.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/lock_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/locking.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/magicflags.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/namer.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/ninja_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/preprocessing_cache.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/preprocessor.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/calculator/add.C +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/calculator/add.H +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/calculator/calculator.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/calculator/calculator.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/calculator/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/computed_include/default_extra.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/computed_include/linux_extra.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/computed_include/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/computed_include/windows_extra.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/conditional_includes/linux_header.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/conditional_includes/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/conditional_includes/windows_header.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/aarch64_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/advanced_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/advanced_preprocessor_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/advanced_preprocessor_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/alt_form_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/arm_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/armcc_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/avx2_optimization.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/basic_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/cache_profiler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/certificate_validation.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/cflags_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/clang_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/combined_features.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/compiler_builtin_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/compiler_builtin_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/conditional_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/cppflags_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/cpu_profiler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/custom_allocator.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/cxxflags_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/default_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/detailed_profiler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/elif_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/elif_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/emscripten_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/expert_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/expert_mode_base.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/fma_optimization.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/gcc_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/high_optimization.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/intel_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/leak_detector.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/linux_advanced.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/linux_epoll_threading.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/linux_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/memory_profiler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/memory_tracker.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/msvc_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/multi_flag_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/multi_flag_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/nested_macros_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/nested_macros_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/networking_base.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/numa_threading.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/partial_features.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/profiling_base.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/riscv_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/simd_optimization.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/ssl_networking.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/stack_tracer.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/strict_cert_validation.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/tcc_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/temp_defined.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/temp_still_defined.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/version1_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/version2_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/version3_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/version_205_plus.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/version_ge_2_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/windows_advanced.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/windows_iocp.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/windows_iocp_threading.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cppflags_macros/x86_64_feature.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cross_platform/cross_platform.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cross_platform/cross_platform.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cross_platform/cross_platform_lin.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cross_platform/cross_platform_win.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cross_platform/test_source.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cycle/cycle_a.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cycle/cycle_b.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/cycle/cycle_c.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/dottypaths/d1/d1.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/dottypaths/d1/d1.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/dottypaths/d2/d2.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/dottypaths/d2/d2.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/dottypaths/dottypaths.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/duplicate_flags/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/empty_macro_bug/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/empty_macro_bug/libs/base.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/empty_macro_bug/libs/conditional.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/empty_macro_bug/libs/dependency.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/empty_macro_bug/libs/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/a_widget.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/a_widget.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/red_herring_c_style_2.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/test_factory.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/widget.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/widget_factory.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/widget_factory.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/z_widget.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/factory/z_widget.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/database.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/feature_config.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/graphics.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/logging.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/feature_headers/networking.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/has_include/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/has_include/optional_feature.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/has_include/stdheader_extras.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/header_guard_bug/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/header_guard_bug/header_a.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/header_guard_bug/header_b.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/header_guard_bug/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/hunter_macro_propagation/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/hunter_macro_propagation/app.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/hunter_macro_propagation/config.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/hunter_macro_propagation/renderer.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/isystem_include_bug/fake_system_include/system/version.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/isystem_include_bug/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/ldflags/conditional_ldflags_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/ldflags/macro_expanded_ldflags.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/ldflags/version_dependent_ldflags.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/ldflags/version_macro.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/build.sh +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_double.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_double.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_int.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_int.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_numbers.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/library/mylib/get_numbers.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/lotsofmagic/lotsofmagic.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_deps/feature_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_deps/feature_x_impl.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_deps/feature_y_impl.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_deps/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/clean_main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/config.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/core.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/debug.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/feature.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/module_b.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/release.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/macro_state_dependency/sample.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magic_processing_order/complex_header.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magic_processing_order/complex_test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magic_processing_order/macro_header.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magic_processing_order/test_macro_transform.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magic_processing_order/traits_header.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicinclude/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicinclude/subdir/important.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicinclude/subdir2/important2.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicinclude/subdir3/important3.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicpkgconfig/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicpkgconfig_fake/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicsourceinheader/include_dir/some_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicsourceinheader/include_dir/sub_dir/another_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicsourceinheader/include_dir/sub_dir/the_code_lin.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicsourceinheader/include_dir/sub_dir/the_code_win.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/magicsourceinheader/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/movingheaders/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/movingheaders/someheader.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/nestedconfig/gcc.debug.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/nestedconfig/nc.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/nestedconfig/subdir/gcc.debug.conf +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/nestedconfig/subdir/nc.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_double.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_double.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_int.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_int.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_numbers.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/get_numbers.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/test_direct_include.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/numbers/test_library.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/common_file.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/conditional_include.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/entry_point_1.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/entry_point_2.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/hash_map.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/hash_utility.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/parse_order_macro_bug/libs/intermediate.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pch/pch_user.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pch/stdafx.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkg_config_header_deps/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkg_config_header_deps/libs/header_with_macros.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkg_config_header_deps/libs/header_with_pkgconfig.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkg_config_header_deps/libs/main_header.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkg_config_header_deps/src/test.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgconfig/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/conditional.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/leaked-macro-pkg.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/linux-path-pkg.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/macro-in-output.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/modified.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/nested.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/pkgs/transitive-deps.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/platform_has_include/linux_func.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/platform_has_include/linux_func.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/platform_has_include/platform_main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/platform_has_include/windows_func.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/platform_has_include/windows_func.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/project_pkgconfig_override/ct.conf.d/pkgconfig/conditional.pc +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/project_pkgconfig_override/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/README.txt +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/createfile.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/createfile.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/filename.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/obtainlock.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/obtainlock.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/test_flock_1.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/serialise_tests/test_flock_2.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/simple/helloworld_c.c +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/simple/helloworld_cpp.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/simple/test_cflags.c +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/static_link_order/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/static_link_order/one.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/static_link_order/two.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/a-game.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/b-game.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/core/background_task.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/core/event_handler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/core/memory_buffer.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/event_loop.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/event_loop.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/audio_system.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/audio_system.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/input_system.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/input_system.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/render_system.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/render_system.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/task_scheduler.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/transitive_cache_bug/engine/systems/task_scheduler.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/README.md +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/cleans_up.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/defines_macro.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/should_be_included.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/undef_bug/uses_conditional.hpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/api_config.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/api_config_new.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/test_main.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/test_main_new.cpp +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/version.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/samples/version_dependent_api/version_new.h +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/simple_preprocessor.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/stringzilla_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_apptools.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_backend_integration.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_base.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_bazel_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_build_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_build_graph.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cake.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cake_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cap.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cleanup_locks.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cmake_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_compilation_database.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_compiler_macros.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_config.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_configutils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_cppdeps.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_ct_lock_helper.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_doc.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_docs_build.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_empty_macro_bug.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_environment_assumptions.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_fd_fix_integration.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_file_analyzer.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_file_analyzer_integration.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_file_locking.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_file_open_efficiency.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_filelist_sample_output.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_filesystem_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_findtargets.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_git_sha_report.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_global_hash_registry.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_headerdeps.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_headertree.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_headertree_hunter_agreement.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_hunter.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_hunter_macro_propagation.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_jobs.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_library.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_listbackends.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_listvariants.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_locking.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_locking_contract.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_macro_state_dependency.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_macro_state_isolation.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_macro_state_pollution.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_magicflags.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_magicflags_styles.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_magicflags_unit.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_magicinclude.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_magicpkgconfig.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_makefile.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_makefile_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_movingheaders.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_multiuser_cache.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_namer.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_ninja_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_noop_rebuild.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_parse_order_macro_bug.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_pkg_config_header_deps.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_preprocessing_cache.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_preprocessor.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_serialisetests.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_shake_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_shared_cache_low_mtime_resolution.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_simple_preprocessor.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_stringzilla_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_testhelper.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_timing_timeline.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_transitive_cache_bug.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_tree.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_tup_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_undef_bug_sample.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/test_utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/timing_timeline.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/tree.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/trim_cache_main.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/tup_backend.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/utils.py +0 -0
- {compiletools-8.3.0 → compiletools-8.3.2}/src/compiletools/wrappedos.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: compiletools
|
|
3
|
-
Version: 8.3.
|
|
3
|
+
Version: 8.3.2
|
|
4
4
|
Summary: Tools to make compiling C/C++ projects easy
|
|
5
5
|
Keywords: c++,make,development
|
|
6
6
|
Author: DrGeoff
|
|
@@ -21,7 +21,7 @@ Requires-Dist: rich>=12.0.0
|
|
|
21
21
|
Requires-Dist: rich-rst>=1.1.7
|
|
22
22
|
Requires-Dist: stringzilla>=3.0.0
|
|
23
23
|
Requires-Dist: bump-my-version>=0.26.0 ; extra == 'dev'
|
|
24
|
-
Requires-Dist: pytest>=8.3.
|
|
24
|
+
Requires-Dist: pytest>=8.3.2 ; extra == 'dev'
|
|
25
25
|
Requires-Dist: pytest-xdist>=3.5 ; extra == 'dev'
|
|
26
26
|
Requires-Dist: ruff>=0.14.0 ; extra == 'dev'
|
|
27
27
|
Requires-Dist: pyright>=1.1 ; extra == 'dev'
|
|
@@ -60,7 +60,7 @@ C/C++ build tools that requires almost no configuration.
|
|
|
60
60
|
|
|
61
61
|
:Author: drgeoffathome@gmail.com
|
|
62
62
|
:Date: 2025-12-17
|
|
63
|
-
:Version: 8.3.
|
|
63
|
+
:Version: 8.3.2
|
|
64
64
|
:Manual section: 1
|
|
65
65
|
:Manual group: developers
|
|
66
66
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "compiletools"
|
|
3
|
-
version = "8.3.
|
|
3
|
+
version = "8.3.2"
|
|
4
4
|
description = "Tools to make compiling C/C++ projects easy"
|
|
5
5
|
readme = "src/compiletools/README.ct-doc.rst"
|
|
6
6
|
requires-python = ">=3.10"
|
|
@@ -34,7 +34,7 @@ tui = [
|
|
|
34
34
|
]
|
|
35
35
|
dev = [
|
|
36
36
|
"bump-my-version>=0.26.0",
|
|
37
|
-
"pytest>=8.3.
|
|
37
|
+
"pytest>=8.3.2",
|
|
38
38
|
"pytest-xdist>=3.5",
|
|
39
39
|
"ruff>=0.14.0",
|
|
40
40
|
"pyright>=1.1",
|
|
@@ -103,7 +103,7 @@ include = [
|
|
|
103
103
|
]
|
|
104
104
|
|
|
105
105
|
[tool.bumpversion]
|
|
106
|
-
current_version = "8.3.
|
|
106
|
+
current_version = "8.3.2"
|
|
107
107
|
parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
|
|
108
108
|
serialize = ["{major}.{minor}.{patch}"]
|
|
109
109
|
search = "{current_version}"
|
|
@@ -160,3 +160,10 @@ ignore = [
|
|
|
160
160
|
"F823", # false positive: module-level `import compiletools.X` makes `compiletools` available
|
|
161
161
|
"SIM103", # returning condition directly can obscure test intent
|
|
162
162
|
]
|
|
163
|
+
# `×` (U+00D7) is the intentional rendering of the parallelism factor in build-timer
|
|
164
|
+
# output (e.g. "15.1× cores busy") and the TUI category labels. The symbol is paired
|
|
165
|
+
# across production output and the tests asserting it.
|
|
166
|
+
"src/compiletools/build_timer.py" = ["RUF001", "RUF002"]
|
|
167
|
+
"src/compiletools/timing_tui.py" = ["RUF001"]
|
|
168
|
+
"src/compiletools/test_build_timer.py" = ["RUF001"]
|
|
169
|
+
"src/compiletools/test_timing_tui.py" = ["RUF001", "RUF002"]
|
|
@@ -8,7 +8,7 @@ Build backend architecture and selection guide
|
|
|
8
8
|
|
|
9
9
|
:Author: drgeoffathome@gmail.com
|
|
10
10
|
:Date: 2026-04-02
|
|
11
|
-
:Version: 8.3.
|
|
11
|
+
:Version: 8.3.2
|
|
12
12
|
:Manual section: 7
|
|
13
13
|
:Manual group: developers
|
|
14
14
|
|
|
@@ -242,7 +242,8 @@ compilation across many nodes dramatically reduces wall-clock time.
|
|
|
242
242
|
- Polls ``sacct`` for job completion
|
|
243
243
|
- Traces recorded for successfully compiled outputs (incremental rebuilds
|
|
244
244
|
across cluster jobs)
|
|
245
|
-
- Slurm logs written to
|
|
245
|
+
- Slurm logs written to ``<diagnostics-dir>/<invocation-id>/slurm-ct-<chunk>-<task>.out``
|
|
246
|
+
(defaults to ``<bindir>/diagnostics/<invocation-id>/``; cleaned on success)
|
|
246
247
|
|
|
247
248
|
**Requires:** Slurm (``sbatch`` in PATH).
|
|
248
249
|
|
|
@@ -9,7 +9,7 @@ Swiss army knife for building a C/C++ project
|
|
|
9
9
|
:Author: drgeoffathome@gmail.com
|
|
10
10
|
:Date: 2018-02-06
|
|
11
11
|
:Copyright: Copyright (C) 2011-2016 Zomojo Pty Ltd
|
|
12
|
-
:Version: 8.3.
|
|
12
|
+
:Version: 8.3.2
|
|
13
13
|
:Manual section: 1
|
|
14
14
|
:Manual group: developers
|
|
15
15
|
|
|
@@ -400,9 +400,24 @@ Common Options
|
|
|
400
400
|
Custom output path for the compilation database.
|
|
401
401
|
|
|
402
402
|
**--timing**
|
|
403
|
-
Collect and report build timing information. Writes
|
|
404
|
-
|
|
405
|
-
table after the build.
|
|
403
|
+
Collect and report build timing information. Writes ``timing.json``
|
|
404
|
+
into the per-invocation diagnostics directory (see
|
|
405
|
+
``--diagnostics-dir``) and prints a summary table after the build.
|
|
406
|
+
Analyze the results with ``ct-timing-report``.
|
|
407
|
+
|
|
408
|
+
**--diagnostics-dir PATH**
|
|
409
|
+
Parent directory for per-invocation diagnostic artifacts -- the
|
|
410
|
+
``--timing`` JSON, slurm job logs from the ``slurm`` backend, and
|
|
411
|
+
future per-build reports. Each ct-cake invocation gets its own
|
|
412
|
+
``<invocation-id>`` subdirectory under this path so concurrent peers
|
|
413
|
+
sharing a bindir or objdir never collide. Default:
|
|
414
|
+
``<bindir>/diagnostics/<invocation-id>/``. Also settable via the
|
|
415
|
+
``DIAGNOSTICS_DIR`` environment variable or
|
|
416
|
+
``diagnostics-dir = <path>`` in any ``ct.conf`` file. Must NOT be
|
|
417
|
+
set to ``--objdir``, which is a content-addressable cache:
|
|
418
|
+
diagnostic files have no eviction path there and races with peer
|
|
419
|
+
ct-cake invocations clobber the data.
|
|
420
|
+
Example: ``ct-cake --diagnostics-dir=/scratch/ct-diag``
|
|
406
421
|
|
|
407
422
|
**--objdir PATH**
|
|
408
423
|
Use a shared object directory for compiled object files across multiple
|
|
@@ -9,7 +9,7 @@ This document describes the command line arguments that are common across ct-* p
|
|
|
9
9
|
:Author: drgeoffathome@gmail.com
|
|
10
10
|
:Date: 2017-07-06
|
|
11
11
|
:Copyright: Copyright (C) 2011-2016 Zomojo Pty Ltd
|
|
12
|
-
:Version: 8.3.
|
|
12
|
+
:Version: 8.3.2
|
|
13
13
|
:Manual section: 1
|
|
14
14
|
:Manual group: developers
|
|
15
15
|
|
|
@@ -9,7 +9,7 @@ Determine header and source dependencies of a C/C++ file by following headers an
|
|
|
9
9
|
:Author: drgeoffathome@gmail.com
|
|
10
10
|
:Date: 2017-07-06
|
|
11
11
|
:Copyright: Copyright (C) 2011-2016 Zomojo Pty Ltd
|
|
12
|
-
:Version: 8.3.
|
|
12
|
+
:Version: 8.3.2
|
|
13
13
|
:Manual section: 1
|
|
14
14
|
:Manual group: developers
|
|
15
15
|
|
|
@@ -9,7 +9,7 @@ Create a tree of header dependencies starting at the given C/C++ file
|
|
|
9
9
|
:Author: drgeoffathome@gmail.com
|
|
10
10
|
:Date: 2018-07-26
|
|
11
11
|
:Copyright: Copyright (C) 2011-2018 Zomojo Pty Ltd
|
|
12
|
-
:Version: 8.3.
|
|
12
|
+
:Version: 8.3.2
|
|
13
13
|
:Manual section: 1
|
|
14
14
|
:Manual group: developers
|
|
15
15
|
|
|
@@ -0,0 +1,193 @@
|
|
|
1
|
+
=================
|
|
2
|
+
ct-timing-report
|
|
3
|
+
=================
|
|
4
|
+
|
|
5
|
+
------------------------------------------------------------
|
|
6
|
+
Analyze and display build timing reports
|
|
7
|
+
------------------------------------------------------------
|
|
8
|
+
|
|
9
|
+
:Author: drgeoffathome@gmail.com
|
|
10
|
+
:Date: 2026-04-06
|
|
11
|
+
:Version: 8.3.2
|
|
12
|
+
:Manual section: 1
|
|
13
|
+
:Manual group: developers
|
|
14
|
+
|
|
15
|
+
SYNOPSIS
|
|
16
|
+
========
|
|
17
|
+
ct-timing-report [TIMING_FILE] [--summary] [--compare BEFORE AFTER] [--chrome-trace OUTPUT]
|
|
18
|
+
|
|
19
|
+
DESCRIPTION
|
|
20
|
+
===========
|
|
21
|
+
|
|
22
|
+
ct-timing-report displays build timing data collected by ``ct-cake --timing``.
|
|
23
|
+
It supports four output modes: an interactive TUI, a static summary table,
|
|
24
|
+
a comparison between two runs, and Chrome Trace export for visualization
|
|
25
|
+
in Perfetto.
|
|
26
|
+
|
|
27
|
+
When run without arguments, ct-timing-report launches an interactive TUI
|
|
28
|
+
with two views — a tree view (default) and a Gantt timeline view — that
|
|
29
|
+
can be switched between in-app. Requires ``textual`` (install with
|
|
30
|
+
``pip install 'compiletools[tui]'``); falls back to the static summary
|
|
31
|
+
table if textual is not installed.
|
|
32
|
+
|
|
33
|
+
The timing file (``timing.json``) is auto-detected if not specified
|
|
34
|
+
explicitly. Search order:
|
|
35
|
+
|
|
36
|
+
1. ``./timing.json`` in the current directory
|
|
37
|
+
2. ``./.ct-timing.json`` in the current directory (legacy name)
|
|
38
|
+
3. The newest ``<diagnostics-dir>/<invocation-id>/timing.json`` (the
|
|
39
|
+
default ``<diagnostics-dir>`` is ``<bindir>/diagnostics/``)
|
|
40
|
+
4. Legacy fallbacks: ``{objdir}/.ct-timing.json``,
|
|
41
|
+
``bin/.ct-timing.json``, ``obj/.ct-timing.json``
|
|
42
|
+
|
|
43
|
+
Note that a hit in the current directory short-circuits the
|
|
44
|
+
diagnostics-dir lookup, so a stale ``./timing.json`` will outrank a
|
|
45
|
+
fresh diagnostics-dir entry. Pass an explicit path or use
|
|
46
|
+
``--diagnostics-dir`` to bypass cwd.
|
|
47
|
+
|
|
48
|
+
The diagnostics root is configurable on ct-timing-report's own CLI via
|
|
49
|
+
``--diagnostics-dir`` (or ``--bindir``, which implies
|
|
50
|
+
``<bindir>/diagnostics/``). The same ``DIAGNOSTICS_DIR`` environment
|
|
51
|
+
variable and ``diagnostics-dir = <path>`` ct.conf setting that ct-cake
|
|
52
|
+
honours are also consulted here, so a project that overrides the
|
|
53
|
+
location once is picked up by both tools.
|
|
54
|
+
|
|
55
|
+
OPTIONS
|
|
56
|
+
=======
|
|
57
|
+
TIMING_FILE
|
|
58
|
+
Path to a ``timing.json`` file. If omitted, auto-detected via the
|
|
59
|
+
diagnostics-dir layout described above and then the legacy fallback
|
|
60
|
+
locations.
|
|
61
|
+
|
|
62
|
+
--diagnostics-dir PATH
|
|
63
|
+
Override the diagnostics root searched for ``timing.json``. Same
|
|
64
|
+
semantics as ``ct-cake --diagnostics-dir``; also settable via
|
|
65
|
+
``DIAGNOSTICS_DIR`` env or ``diagnostics-dir = <path>`` in any
|
|
66
|
+
``ct.conf``.
|
|
67
|
+
|
|
68
|
+
--bindir PATH
|
|
69
|
+
Override the bindir. Used to derive the default diagnostics root
|
|
70
|
+
(``<bindir>/diagnostics/``) when ``--diagnostics-dir`` is not set.
|
|
71
|
+
|
|
72
|
+
--summary
|
|
73
|
+
Print a static Rich summary table to stdout (non-interactive).
|
|
74
|
+
See `SUMMARY TABLE`_ for column semantics.
|
|
75
|
+
|
|
76
|
+
--compare BEFORE AFTER
|
|
77
|
+
Compare two timing files and display a delta table showing time
|
|
78
|
+
differences per phase and per rule (top 5 largest deltas per phase).
|
|
79
|
+
|
|
80
|
+
--chrome-trace OUTPUT
|
|
81
|
+
Export timing data as Chrome Trace JSON. Open the resulting file in
|
|
82
|
+
`Perfetto <https://ui.perfetto.dev/>`_ or ``chrome://tracing``.
|
|
83
|
+
|
|
84
|
+
INTERACTIVE TUI
|
|
85
|
+
===============
|
|
86
|
+
|
|
87
|
+
The TUI has two views. Press **v** in the tree view to open the
|
|
88
|
+
timeline; press **t** or **escape** in the timeline to return to the
|
|
89
|
+
tree.
|
|
90
|
+
|
|
91
|
+
Tree view (ncdu-style)
|
|
92
|
+
----------------------
|
|
93
|
+
|
|
94
|
+
A hierarchical view of build phases, per-rule-type aggregations, and
|
|
95
|
+
individual rules. Top-level rows are phases (``Build Execution``,
|
|
96
|
+
``Test Execution``, ...). Inside the parallelizable phases (build and
|
|
97
|
+
test execution), an intermediate level groups rules by category
|
|
98
|
+
(``Compile``, ``Link``, ``Test``, ...) and shows the same Wall / CPU /
|
|
99
|
+
parallelism numbers as the static summary table. Individual rules
|
|
100
|
+
appear as leaves under their category.
|
|
101
|
+
|
|
102
|
+
Keybindings:
|
|
103
|
+
|
|
104
|
+
- **Arrows / j / k** — navigate
|
|
105
|
+
- **Enter / Right** — expand node
|
|
106
|
+
- **Left** — collapse node
|
|
107
|
+
- **s** — cycle sort mode (time / name)
|
|
108
|
+
- **v** — switch to timeline view
|
|
109
|
+
- **q** — quit
|
|
110
|
+
|
|
111
|
+
Timeline view (Gantt)
|
|
112
|
+
---------------------
|
|
113
|
+
|
|
114
|
+
A swimlane-style view of every rule plotted on a wall-clock axis with
|
|
115
|
+
parallel rules packed into separate lanes. Phases run as a coloured
|
|
116
|
+
header band above the lanes; rules are coloured by category (compile,
|
|
117
|
+
link, static_library, shared_library, test). Selected events are
|
|
118
|
+
outlined with rose ``┃`` brackets; chevrons (``‹`` / ``›``) flag bars
|
|
119
|
+
that extend past the viewport. A status panel at the bottom shows the
|
|
120
|
+
selected event's target, category, elapsed time, start/end relative to
|
|
121
|
+
build start, lane, and source path.
|
|
122
|
+
|
|
123
|
+
Keybindings:
|
|
124
|
+
|
|
125
|
+
- **+ / -** — zoom in / out (anchored on selection)
|
|
126
|
+
- **0** — fit entire build to width
|
|
127
|
+
- **← / → / h / l** — pan
|
|
128
|
+
- **↑ / ↓ / k / j** — switch lanes (selection follows)
|
|
129
|
+
- **n / p** — next / previous event in time order
|
|
130
|
+
- **Home / End** — first / last event
|
|
131
|
+
- **Mouse click** — select event under cursor
|
|
132
|
+
- **t / escape** — return to tree view
|
|
133
|
+
- **q** — quit
|
|
134
|
+
- **?** — help
|
|
135
|
+
|
|
136
|
+
SUMMARY TABLE
|
|
137
|
+
=============
|
|
138
|
+
|
|
139
|
+
The static summary (printed inline by ``ct-cake --timing`` and on demand
|
|
140
|
+
by ``ct-timing-report --summary``) has four columns:
|
|
141
|
+
|
|
142
|
+
================== =========================================================
|
|
143
|
+
Column Meaning
|
|
144
|
+
================== =========================================================
|
|
145
|
+
Phase Phase name (top-level rows) or rule category (indented).
|
|
146
|
+
Wall (s) Wall-clock elapsed. For phases, the phase span. For
|
|
147
|
+
indented sub-rows, the union of intervals during which
|
|
148
|
+
any rule of that category was running -- i.e. real
|
|
149
|
+
elapsed time spent on the category, accounting for
|
|
150
|
+
parallel overlap.
|
|
151
|
+
CPU (s) Sum of per-rule durations within the category (total
|
|
152
|
+
work performed across all rules). Blank for phase
|
|
153
|
+
rows, which are not parallel-aggregated.
|
|
154
|
+
% / parallelism Phase rows: share of total build wall-clock (``99.2%``).
|
|
155
|
+
Indented rows: parallelism factor = CPU ÷ Wall
|
|
156
|
+
(``15.2×`` means that category averaged 15.2 cores
|
|
157
|
+
busy). The multiplier is reported instead of a
|
|
158
|
+
percentage because CPU/wall ratios on ``-j N`` builds
|
|
159
|
+
routinely exceed 10×, and percentages above 100% are
|
|
160
|
+
not informative.
|
|
161
|
+
================== =========================================================
|
|
162
|
+
|
|
163
|
+
Below the table, ``Slowest compilations`` and ``Slowest tests`` list the
|
|
164
|
+
ten longest individual rule durations from the run.
|
|
165
|
+
|
|
166
|
+
EXAMPLES
|
|
167
|
+
========
|
|
168
|
+
|
|
169
|
+
Build with timing and view the report::
|
|
170
|
+
|
|
171
|
+
ct-cake --auto --timing
|
|
172
|
+
ct-timing-report timing.json
|
|
173
|
+
|
|
174
|
+
Launch the interactive TUI (auto-detects timing file; press **v** for
|
|
175
|
+
the Gantt timeline view)::
|
|
176
|
+
|
|
177
|
+
ct-timing-report
|
|
178
|
+
|
|
179
|
+
Print a static summary table::
|
|
180
|
+
|
|
181
|
+
ct-timing-report --summary
|
|
182
|
+
|
|
183
|
+
Compare two builds::
|
|
184
|
+
|
|
185
|
+
ct-timing-report --compare before.json after.json
|
|
186
|
+
|
|
187
|
+
Export for Perfetto visualization::
|
|
188
|
+
|
|
189
|
+
ct-timing-report --chrome-trace out.json
|
|
190
|
+
|
|
191
|
+
SEE ALSO
|
|
192
|
+
========
|
|
193
|
+
``ct-cake`` (1), ``compiletools`` (1)
|