diff options
author | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-09 15:31:38 -0800 |
---|---|---|
committer | Jonas Devlieghere <jonas@devlieghere.com> | 2020-01-09 15:32:09 -0800 |
commit | b81c8c6976b987a25fc54fa2bf3524919759a898 (patch) | |
tree | 8752c30273d6262f65c6e622cdfc9a184f173a40 | |
parent | 5fe4679cc9cfb4941b766db07bf3cd928075d204 (diff) | |
download | bcm5719-llvm-b81c8c6976b987a25fc54fa2bf3524919759a898.tar.gz bcm5719-llvm-b81c8c6976b987a25fc54fa2bf3524919759a898.zip |
[lldb] Remove spurious file
-rw-r--r-- | lldb/lldb/cmake/modules/FindPythonInterpAndLibs.cmake | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/lldb/lldb/cmake/modules/FindPythonInterpAndLibs.cmake b/lldb/lldb/cmake/modules/FindPythonInterpAndLibs.cmake deleted file mode 100644 index 90c902f74ae..00000000000 --- a/lldb/lldb/cmake/modules/FindPythonInterpAndLibs.cmake +++ /dev/null @@ -1,51 +0,0 @@ -#.rst: -# FindPythonInterpndLibs -# ----------- -# -# Find the python interpreter and libraries as a whole. - -if(PYTHON_LIBRARIES AND PYTHON_INCLUDE_DIRS AND PYTHON_EXECUTABLE) - set(PYTHONINTERPANDLIBS_FOUND TRUE) -else() - if ("${CMAKE_SYSTEM_NAME}" STREQUAL "Windows") - find_package(Python3 COMPONENTS Interpreter Development QUIET) - if (Python3_FOUND AND Python3_Interpreter_FOUND) - set(PYTHON_LIBRARIES ${Python3_LIBRARIES}) - set(PYTHON_INCLUDE_DIRS ${Python3_INCLUDE_DIRS}) - set(PYTHON_EXECUTABLE ${Python3_EXECUTABLE}) - mark_as_advanced( - PYTHON_LIBRARIES - PYTHON_INCLUDE_DIRS - PYTHON_EXECUTABLE) - endif() - else() - find_package(PythonInterp QUIET) - find_package(PythonLibs QUIET) - if(PYTHONINTERP_FOUND AND PYTHONLIBS_FOUND) - if (NOT CMAKE_CROSSCOMPILING) - string(REPLACE "." ";" pythonlibs_version_list ${PYTHONLIBS_VERSION_STRING}) - list(GET pythonlibs_version_list 0 pythonlibs_major) - list(GET pythonlibs_version_list 1 pythonlibs_minor) - - # Ignore the patch version. Some versions of macOS report a different - # patch version for the system provided interpreter and libraries. - if (CMAKE_CROSSCOMPILING OR (PYTHON_VERSION_MAJOR VERSION_EQUAL pythonlibs_major AND - PYTHON_VERSION_MINOR VERSION_EQUAL pythonlibs_minor)) - mark_as_advanced( - PYTHON_LIBRARIES - PYTHON_INCLUDE_DIRS - PYTHON_EXECUTABLE) - endif() - endif() - endif() - endif() - - include(FindPackageHandleStandardArgs) - find_package_handle_standard_args(PythonInterpAndLibs - FOUND_VAR - PYTHONINTERPANDLIBS_FOUND - REQUIRED_VARS - PYTHON_LIBRARIES - PYTHON_INCLUDE_DIRS - PYTHON_EXECUTABLE) -endif() |