From 95b0d08af156e15a150e80ca54600086c5a2da09 Mon Sep 17 00:00:00 2001 From: Nico Weber Date: Wed, 10 Jul 2019 19:31:25 +0000 Subject: [PATCH] Add support for building with Python 3 LLDB supports Python 3 now. Differential Revision: https://reviews.llvm.org/D64443 Patch from Christian Biesinger ! llvm-svn: 365692 --- CMakeLists.txt | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1b5a6b9de98..acebd3feb8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -641,10 +641,8 @@ option(LLVM_ENABLE_PLUGINS "Enable plugin support" ${LLVM_ENABLE_PLUGINS_default include(HandleLLVMOptions) -# Verify that we can find a Python 2 interpreter. Python 3 is unsupported. -# FIXME: We should support systems with only Python 3, but that requires work -# on LLDB. -set(Python_ADDITIONAL_VERSIONS 2.7) +# We support both Python 2 and 3. +set(Python_ADDITIONAL_VERSIONS 3.7 3.6 3.5 2.7) include(FindPythonInterp) if( NOT PYTHONINTERP_FOUND ) message(FATAL_ERROR