[Lldb-commits] [PATCH] D39215: Default to using in-tree clang for building test executables
Pavel Labath via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 23 16:35:59 PDT 2017
labath created this revision.
Herald added a subscriber: mgorny.
Using the in-tree clang should be the default test configuration as that
is the one compiler that we can be sure everyone has (better
reproducibility of test results). Also, it should hopefully reduce the
impact of pr35040.
https://reviews.llvm.org/D39215
Files:
lit/CMakeLists.txt
Index: lit/CMakeLists.txt
===================================================================
--- lit/CMakeLists.txt
+++ lit/CMakeLists.txt
@@ -11,7 +11,7 @@
set(ENABLE_SHARED 0)
endif(BUILD_SHARED_LIBS)
-option(LLDB_TEST_CLANG "Use in-tree clang when testing lldb" Off)
+option(LLDB_TEST_CLANG "Use in-tree clang when testing lldb" On)
set(LLDB_TEST_C_COMPILER "" CACHE STRING "C compiler to use when testing LLDB")
set(LLDB_TEST_CXX_COMPILER "" CACHE STRING "C++ compiler to use when testing LLDB")
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D39215.119968.patch
Type: text/x-patch
Size: 511 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20171023/48f66ece/attachment.bin>
More information about the lldb-commits
mailing list