[compiler-rt] 9fb8058 - tsan: enable the new runtime

Dmitry Vyukov via llvm-commits llvm-commits at lists.llvm.org
Mon Dec 13 03:50:17 PST 2021


Author: Dmitry Vyukov
Date: 2021-12-13T12:50:13+01:00
New Revision: 9fb8058a8079b3a9a8af0aff0f4b6898960d331f

URL: https://github.com/llvm/llvm-project/commit/9fb8058a8079b3a9a8af0aff0f4b6898960d331f
DIFF: https://github.com/llvm/llvm-project/commit/9fb8058a8079b3a9a8af0aff0f4b6898960d331f.diff

LOG: tsan: enable the new runtime

This enables the new runtime (D112603) by default.

Depends on D112603.

Differential Revision: https://reviews.llvm.org/D115624

Added: 
    

Modified: 
    compiler-rt/lib/tsan/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/compiler-rt/lib/tsan/CMakeLists.txt b/compiler-rt/lib/tsan/CMakeLists.txt
index 35c40a70e0c9..a327fb14de9a 100644
--- a/compiler-rt/lib/tsan/CMakeLists.txt
+++ b/compiler-rt/lib/tsan/CMakeLists.txt
@@ -16,7 +16,7 @@ if(COMPILER_RT_TSAN_DEBUG_OUTPUT)
 endif()
 
 # Add the actual runtime library.
-option(TSAN_USE_OLD_RUNTIME "Use the old tsan runtime (temporal option for emergencies)." ON)
+option(TSAN_USE_OLD_RUNTIME "Use the old tsan runtime (temporal option for emergencies)." OFF)
 if (TSAN_USE_OLD_RUNTIME)
   add_subdirectory(rtl-old)
 else()


        


More information about the llvm-commits mailing list