[Lldb-commits] [lldb] r365688 - Add Python 3.6 and 3.7 to the version list
Nico Weber via lldb-commits
lldb-commits at lists.llvm.org
Wed Jul 10 12:18:38 PDT 2019
Author: nico
Date: Wed Jul 10 12:18:38 2019
New Revision: 365688
URL: http://llvm.org/viewvc/llvm-project?rev=365688&view=rev
Log:
Add Python 3.6 and 3.7 to the version list
Python 3.6 and 3.7 have been released.
Differential Revision: https://reviews.llvm.org/D64444
Patch from Christian Biesinger <cbiesinger at google.com>!
Modified:
lldb/trunk/cmake/modules/LLDBStandalone.cmake
Modified: lldb/trunk/cmake/modules/LLDBStandalone.cmake
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/cmake/modules/LLDBStandalone.cmake?rev=365688&r1=365687&r2=365688&view=diff
==============================================================================
--- lldb/trunk/cmake/modules/LLDBStandalone.cmake (original)
+++ lldb/trunk/cmake/modules/LLDBStandalone.cmake Wed Jul 10 12:18:38 2019
@@ -88,7 +88,7 @@ if (CMAKE_SOURCE_DIR STREQUAL CMAKE_CURR
include(LLVMDistributionSupport)
if (PYTHON_EXECUTABLE STREQUAL "")
- set(Python_ADDITIONAL_VERSIONS 3.5 3.4 3.3 3.2 3.1 3.0 2.7 2.6 2.5)
+ set(Python_ADDITIONAL_VERSIONS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.7 2.6 2.5)
include(FindPythonInterp)
if( NOT PYTHONINTERP_FOUND )
message(FATAL_ERROR
More information about the lldb-commits
mailing list