west.cmake 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. # SPDX-License-Identifier: Apache-2.0
  2. # west is an optional dependency. We need to run west using the same
  3. # Python interpreter as everything else, though, so we play some extra
  4. # tricks.
  5. # When west runs cmake, it sets WEST_PYTHON to its interpreter. If
  6. # it's defined, we assume west is installed. We do these checks here
  7. # instead of in the failure paths below to avoid CMake warnings about
  8. # WEST_PYTHON not being used.
  9. if(DEFINED WEST_PYTHON)
  10. # Cut out any symbolic links, e.g. python3.x -> python
  11. get_filename_component(west_realpath ${WEST_PYTHON} REALPATH)
  12. get_filename_component(python_realpath ${PYTHON_EXECUTABLE} REALPATH)
  13. # If realpaths differ from the variables we're using, add extra
  14. # diagnostics.
  15. if(NOT ("${west_realpath}" STREQUAL "${WEST_PYTHON}"))
  16. set(west_realpath_msg " (real path ${west_realpath})")
  17. else()
  18. set(west_realpath_msg "")
  19. endif()
  20. if(NOT ("${python_realpath}" STREQUAL "${PYTHON_EXECUTABLE}"))
  21. set(python_realpath_msg " (real path ${python_realpath})")
  22. else()
  23. set(python_realpath_msg "")
  24. endif()
  25. endif()
  26. execute_process(
  27. COMMAND
  28. ${PYTHON_EXECUTABLE}
  29. -c
  30. "import west.version; print(west.version.__version__, end='')"
  31. OUTPUT_VARIABLE west_version
  32. ERROR_VARIABLE west_version_err
  33. RESULT_VARIABLE west_version_output_result
  34. )
  35. if(west_version_output_result)
  36. if(DEFINED WEST_PYTHON)
  37. if(NOT (${west_realpath} STREQUAL ${python_realpath}))
  38. set(PYTHON_EXECUTABLE_OUT_OF_SYNC "\nOr verify these installations:\n\
  39. The Python version used by west is: ${WEST_PYTHON}${west_realpath_msg}\n\
  40. The Python version used by CMake is: ${PYTHON_EXECUTABLE}${python_realpath_msg}")
  41. endif()
  42. message(FATAL_ERROR "Unable to import west.version from '${PYTHON_EXECUTABLE}':\n${west_version_err}\
  43. Please install with:\n\
  44. ${PYTHON_EXECUTABLE} -m pip install west\
  45. ${PYTHON_EXECUTABLE_OUT_OF_SYNC}")
  46. else()
  47. # WEST_PYTHON is undefined and we couldn't import west. That's
  48. # fine; it's optional.
  49. set(WEST WEST-NOTFOUND CACHE INTERNAL "West")
  50. endif()
  51. else()
  52. # We can import west from PYTHON_EXECUTABLE and have its version.
  53. # Make sure its version matches the minimum required one.
  54. set(MIN_WEST_VERSION 0.7.1)
  55. if(${west_version} VERSION_LESS ${MIN_WEST_VERSION})
  56. message(FATAL_ERROR "The detected west version, ${west_version}, is unsupported.\n\
  57. The minimum supported version is ${MIN_WEST_VERSION}.\n\
  58. Please upgrade with:\n\
  59. ${PYTHON_EXECUTABLE} -m pip install --upgrade west\
  60. ${PYTHON_EXECUTABLE_OUT_OF_SYNC}\n")
  61. endif()
  62. # Set WEST to a COMMAND prefix as if it were a find_program()
  63. # result.
  64. #
  65. # From west 0.8 forward, you can run 'python -m west' to run
  66. # the command line application.
  67. set(WEST_MODULE west)
  68. if(${west_version} VERSION_LESS 0.8)
  69. # In west 0.7.x, this wasn't supported yet, but it happens to be
  70. # possible to run 'python -m west.app.main'.
  71. string(APPEND WEST_MODULE .app.main)
  72. endif()
  73. # Need to cache this so the Zephyr Eclipse plugin knows
  74. # how to invoke West.
  75. set(WEST ${PYTHON_EXECUTABLE} -m ${WEST_MODULE} CACHE INTERNAL "West")
  76. # Print information about the west module we're relying on. This
  77. # will still work even after output is one line.
  78. message(STATUS "Found west (found suitable version \"${west_version}\", minimum required is \"${MIN_WEST_VERSION}\")")
  79. execute_process(
  80. COMMAND ${WEST} topdir
  81. OUTPUT_VARIABLE WEST_TOPDIR
  82. ERROR_QUIET
  83. RESULT_VARIABLE west_topdir_result
  84. OUTPUT_STRIP_TRAILING_WHITESPACE
  85. WORKING_DIRECTORY ${ZEPHYR_BASE}
  86. )
  87. if(west_topdir_result)
  88. # west topdir is undefined.
  89. # That's fine; west is optional, so could be custom Zephyr project.
  90. set(WEST WEST-NOTFOUND CACHE INTERNAL "West")
  91. endif()
  92. endif()