[llvm] r268441 - Disable LLVM_ENABLE_TIMESTAMPS by default

Chris Bieneman via llvm-commits llvm-commits at lists.llvm.org
Tue May 3 14:22:14 PDT 2016


Author: cbieneman
Date: Tue May  3 16:22:14 2016
New Revision: 268441

URL: http://llvm.org/viewvc/llvm-project?rev=268441&view=rev
Log:
Disable LLVM_ENABLE_TIMESTAMPS by default

This change is based on the discussion from http://lists.llvm.org/pipermail/llvm-dev/2016-May/098990.html.

The goal is to make the default LLVM configuration build deterministically.

Modified:
    llvm/trunk/CMakeLists.txt

Modified: llvm/trunk/CMakeLists.txt
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/CMakeLists.txt?rev=268441&r1=268440&r2=268441&view=diff
==============================================================================
--- llvm/trunk/CMakeLists.txt (original)
+++ llvm/trunk/CMakeLists.txt Tue May  3 16:22:14 2016
@@ -250,7 +250,7 @@ set(LLVM_EXPERIMENTAL_TARGETS_TO_BUILD "
 option(BUILD_SHARED_LIBS
   "Build all libraries as shared libraries instead of static" OFF)
 
-option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" ON)
+option(LLVM_ENABLE_TIMESTAMPS "Enable embedding timestamp information in build" OFF)
 if(LLVM_ENABLE_TIMESTAMPS)
   set(ENABLE_TIMESTAMPS 1)
 endif()




More information about the llvm-commits mailing list