diff --git a/compiler-rt/lib/scudo/standalone/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/CMakeLists.txt --- a/compiler-rt/lib/scudo/standalone/CMakeLists.txt +++ b/compiler-rt/lib/scudo/standalone/CMakeLists.txt @@ -85,7 +85,9 @@ stack_depot.h stats.h string_utils.h - timing.h + # TODO(chiahungduan): Temporarily disable the timer because of the print + # of u64 has incorrect placeholder. + # timing.h tsd_exclusive.h tsd_shared.h tsd.h @@ -108,7 +110,9 @@ report.cpp rss_limit_checker.cpp string_utils.cpp - timing.cpp + # TODO(chiahungduan): Temporarily disable the timer because of the print + # of u64 has incorrect placeholder. + # timing.cpp ) # Enable the necessary instruction set for scudo_crc32.cpp, if available. diff --git a/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt b/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt --- a/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt +++ b/compiler-rt/lib/scudo/standalone/tests/CMakeLists.txt @@ -105,7 +105,9 @@ size_class_map_test.cpp stats_test.cpp strings_test.cpp - timing_test.cpp + # TODO(chiahungduan): Temporarily disable the timer test because of the print + # of u64 has incorrect placeholder. + # timing_test.cpp tsd_test.cpp vector_test.cpp scudo_unit_test_main.cpp