forked from OSchip/llvm-project
[CMake] Remove duplicated logic to find Python when doing a standalone build
I'm pretty sure there's no need to have this logic living in LLDBStandalone. It doesn't appear anything in LLVM depends on this, and We always go through LLDBConfig.cmake which has the canonical way to find the Python libs and interpreter for LLDB. Differential revision: https://reviews.llvm.org/D64821 llvm-svn: 366363
This commit is contained in:
parent
ca12cb9482
commit
e37750b934
|
@ -77,18 +77,6 @@ include(HandleLLVMOptions)
|
|||
include(CheckAtomic)
|
||||
include(LLVMDistributionSupport)
|
||||
|
||||
set(Python_ADDITIONAL_VERSIONS 3.7 3.6 3.5 2.7)
|
||||
if (PYTHON_EXECUTABLE STREQUAL "")
|
||||
include(FindPythonInterp)
|
||||
if( NOT PYTHONINTERP_FOUND )
|
||||
message(FATAL_ERROR
|
||||
"Unable to find Python interpreter, required for builds and testing.
|
||||
Please install Python or specify the PYTHON_EXECUTABLE CMake variable.")
|
||||
endif()
|
||||
else()
|
||||
message(STATUS "Found PythonInterp: ${PYTHON_EXECUTABLE}")
|
||||
endif()
|
||||
|
||||
set(PACKAGE_VERSION "${LLVM_PACKAGE_VERSION}")
|
||||
set(LLVM_INCLUDE_TESTS ON CACHE INTERNAL "")
|
||||
|
||||
|
|
Loading…
Reference in New Issue