FindPythonInterp.cmake 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. #[=======================================================================[.rst:
  4. FindPythonInterp
  5. ----------------
  6. .. deprecated:: 3.12
  7. Use :module:`FindPython3`, :module:`FindPython2` or :module:`FindPython` instead.
  8. Find python interpreter
  9. This module finds if Python interpreter is installed and determines
  10. where the executables are. This code sets the following variables:
  11. ::
  12. PYTHONINTERP_FOUND - Was the Python executable found
  13. PYTHON_EXECUTABLE - path to the Python interpreter
  14. ::
  15. PYTHON_VERSION_STRING - Python version found e.g. 2.5.2
  16. PYTHON_VERSION_MAJOR - Python major version found e.g. 2
  17. PYTHON_VERSION_MINOR - Python minor version found e.g. 5
  18. PYTHON_VERSION_PATCH - Python patch version found e.g. 2
  19. The Python_ADDITIONAL_VERSIONS variable can be used to specify a list
  20. of version numbers that should be taken into account when searching
  21. for Python. You need to set this variable before calling
  22. find_package(PythonInterp).
  23. If calling both ``find_package(PythonInterp)`` and
  24. ``find_package(PythonLibs)``, call ``find_package(PythonInterp)`` first to
  25. get the currently active Python version by default with a consistent version
  26. of PYTHON_LIBRARIES.
  27. .. note::
  28. A call to ``find_package(PythonInterp ${V})`` for python version ``V``
  29. may find a ``python`` executable with no version suffix. In this case
  30. no attempt is made to avoid python executables from other versions.
  31. Use :module:`FindPython3`, :module:`FindPython2` or :module:`FindPython`
  32. instead.
  33. #]=======================================================================]
  34. unset(_Python_NAMES)
  35. set(_PYTHON1_VERSIONS 1.6 1.5)
  36. set(_PYTHON2_VERSIONS 2.7 2.6 2.5 2.4 2.3 2.2 2.1 2.0)
  37. set(_PYTHON3_VERSIONS 3.9 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0)
  38. if(PythonInterp_FIND_VERSION)
  39. if(PythonInterp_FIND_VERSION_COUNT GREATER 1)
  40. set(_PYTHON_FIND_MAJ_MIN "${PythonInterp_FIND_VERSION_MAJOR}.${PythonInterp_FIND_VERSION_MINOR}")
  41. list(APPEND _Python_NAMES
  42. python${_PYTHON_FIND_MAJ_MIN}
  43. python${PythonInterp_FIND_VERSION_MAJOR})
  44. unset(_PYTHON_FIND_OTHER_VERSIONS)
  45. if(NOT PythonInterp_FIND_VERSION_EXACT)
  46. foreach(_PYTHON_V ${_PYTHON${PythonInterp_FIND_VERSION_MAJOR}_VERSIONS})
  47. if(NOT _PYTHON_V VERSION_LESS _PYTHON_FIND_MAJ_MIN)
  48. list(APPEND _PYTHON_FIND_OTHER_VERSIONS ${_PYTHON_V})
  49. endif()
  50. endforeach()
  51. endif()
  52. unset(_PYTHON_FIND_MAJ_MIN)
  53. else()
  54. list(APPEND _Python_NAMES python${PythonInterp_FIND_VERSION_MAJOR})
  55. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON${PythonInterp_FIND_VERSION_MAJOR}_VERSIONS})
  56. endif()
  57. else()
  58. set(_PYTHON_FIND_OTHER_VERSIONS ${_PYTHON3_VERSIONS} ${_PYTHON2_VERSIONS} ${_PYTHON1_VERSIONS})
  59. endif()
  60. find_program(PYTHON_EXECUTABLE NAMES ${_Python_NAMES})
  61. # Set up the versions we know about, in the order we will search. Always add
  62. # the user supplied additional versions to the front.
  63. set(_Python_VERSIONS ${Python_ADDITIONAL_VERSIONS})
  64. # If FindPythonInterp has already found the major and minor version,
  65. # insert that version next to get consistent versions of the interpreter and
  66. # library.
  67. if(DEFINED PYTHONLIBS_VERSION_STRING)
  68. string(REPLACE "." ";" _PYTHONLIBS_VERSION "${PYTHONLIBS_VERSION_STRING}")
  69. list(GET _PYTHONLIBS_VERSION 0 _PYTHONLIBS_VERSION_MAJOR)
  70. list(GET _PYTHONLIBS_VERSION 1 _PYTHONLIBS_VERSION_MINOR)
  71. list(APPEND _Python_VERSIONS ${_PYTHONLIBS_VERSION_MAJOR}.${_PYTHONLIBS_VERSION_MINOR})
  72. endif()
  73. # Search for the current active python version first
  74. list(APPEND _Python_VERSIONS ";")
  75. list(APPEND _Python_VERSIONS ${_PYTHON_FIND_OTHER_VERSIONS})
  76. unset(_PYTHON_FIND_OTHER_VERSIONS)
  77. unset(_PYTHON1_VERSIONS)
  78. unset(_PYTHON2_VERSIONS)
  79. unset(_PYTHON3_VERSIONS)
  80. # Search for newest python version if python executable isn't found
  81. if(NOT PYTHON_EXECUTABLE)
  82. foreach(_CURRENT_VERSION IN LISTS _Python_VERSIONS)
  83. set(_Python_NAMES python${_CURRENT_VERSION})
  84. if(CMAKE_HOST_WIN32)
  85. list(APPEND _Python_NAMES python)
  86. endif()
  87. find_program(PYTHON_EXECUTABLE
  88. NAMES ${_Python_NAMES}
  89. PATHS
  90. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]
  91. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-32\\InstallPath]
  92. [HKEY_LOCAL_MACHINE\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-64\\InstallPath]
  93. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}\\InstallPath]
  94. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-32\\InstallPath]
  95. [HKEY_CURRENT_USER\\SOFTWARE\\Python\\PythonCore\\${_CURRENT_VERSION}-64\\InstallPath]
  96. )
  97. endforeach()
  98. endif()
  99. # determine python version string
  100. if(PYTHON_EXECUTABLE)
  101. execute_process(COMMAND "${PYTHON_EXECUTABLE}" -c
  102. "import sys; sys.stdout.write(';'.join([str(x) for x in sys.version_info[:3]]))"
  103. OUTPUT_VARIABLE _VERSION
  104. RESULT_VARIABLE _PYTHON_VERSION_RESULT
  105. ERROR_QUIET)
  106. if(NOT _PYTHON_VERSION_RESULT)
  107. string(REPLACE ";" "." PYTHON_VERSION_STRING "${_VERSION}")
  108. list(GET _VERSION 0 PYTHON_VERSION_MAJOR)
  109. list(GET _VERSION 1 PYTHON_VERSION_MINOR)
  110. list(GET _VERSION 2 PYTHON_VERSION_PATCH)
  111. if(PYTHON_VERSION_PATCH EQUAL 0)
  112. # it's called "Python 2.7", not "2.7.0"
  113. string(REGEX REPLACE "\\.0$" "" PYTHON_VERSION_STRING "${PYTHON_VERSION_STRING}")
  114. endif()
  115. else()
  116. # sys.version predates sys.version_info, so use that
  117. # sys.version was first documented for Python 1.5, so assume version 1.4
  118. # if retrieving sys.version fails.
  119. execute_process(COMMAND "${PYTHON_EXECUTABLE}" -c "try: import sys; sys.stdout.write(sys.version)\nexcept: sys.stdout.write(\"1.4.0\")"
  120. OUTPUT_VARIABLE _VERSION
  121. RESULT_VARIABLE _PYTHON_VERSION_RESULT
  122. ERROR_QUIET)
  123. if(NOT _PYTHON_VERSION_RESULT)
  124. string(REGEX REPLACE " .*" "" PYTHON_VERSION_STRING "${_VERSION}")
  125. string(REGEX REPLACE "^([0-9]+)\\.[0-9]+.*" "\\1" PYTHON_VERSION_MAJOR "${PYTHON_VERSION_STRING}")
  126. string(REGEX REPLACE "^[0-9]+\\.([0-9])+.*" "\\1" PYTHON_VERSION_MINOR "${PYTHON_VERSION_STRING}")
  127. if(PYTHON_VERSION_STRING MATCHES "^[0-9]+\\.[0-9]+\\.([0-9]+)")
  128. set(PYTHON_VERSION_PATCH "${CMAKE_MATCH_1}")
  129. else()
  130. set(PYTHON_VERSION_PATCH "0")
  131. endif()
  132. else()
  133. unset(PYTHON_VERSION_STRING)
  134. unset(PYTHON_VERSION_MAJOR)
  135. unset(PYTHON_VERSION_MINOR)
  136. unset(PYTHON_VERSION_PATCH)
  137. endif()
  138. endif()
  139. unset(_PYTHON_VERSION_RESULT)
  140. unset(_VERSION)
  141. endif()
  142. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  143. FIND_PACKAGE_HANDLE_STANDARD_ARGS(PythonInterp REQUIRED_VARS PYTHON_EXECUTABLE VERSION_VAR PYTHON_VERSION_STRING)
  144. mark_as_advanced(PYTHON_EXECUTABLE)