verify-toolchain.cmake 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # The purpose of this file is to verify that required variables has been
  2. # defined for proper toolchain use.
  3. #
  4. # It also offers the possibility to verify that the selected toolchain matches
  5. # a specific version.
  6. # Currently only when using the Zephyr SDK the version is verified, but other
  7. # other version verification for other toolchains can be added as needed.
  8. #
  9. # This file can also be executed in script mode so that it can be used in other
  10. # places, such as python scripts.
  11. #
  12. # When invoked as a script with -P:
  13. # cmake [options] -P verify-toolchain.cmake
  14. #
  15. # it takes the following arguments:
  16. # FORMAT=json: Print the output as a json formatted string, useful for Python
  17. # This is the minimum required Zephyr-SDK version which supports CMake package
  18. set(TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION 0.13.1)
  19. # Set internal variables if set in environment.
  20. if(NOT DEFINED ZEPHYR_TOOLCHAIN_VARIANT)
  21. set(ZEPHYR_TOOLCHAIN_VARIANT $ENV{ZEPHYR_TOOLCHAIN_VARIANT})
  22. endif()
  23. if(NOT DEFINED ZEPHYR_SDK_INSTALL_DIR)
  24. set(ZEPHYR_SDK_INSTALL_DIR $ENV{ZEPHYR_SDK_INSTALL_DIR})
  25. endif()
  26. # Pick host system's toolchain if we are targeting posix
  27. if("${ARCH}" STREQUAL "posix")
  28. if(NOT "${ZEPHYR_TOOLCHAIN_VARIANT}" STREQUAL "llvm")
  29. set(ZEPHYR_TOOLCHAIN_VARIANT "host")
  30. endif()
  31. return()
  32. endif()
  33. if(NOT ZEPHYR_TOOLCHAIN_VARIANT AND
  34. (CROSS_COMPILE OR (DEFINED ENV{CROSS_COMPILE})))
  35. set(ZEPHYR_TOOLCHAIN_VARIANT cross-compile)
  36. endif()
  37. # Verify Zephyr SDK Toolchain.
  38. # There are three scenarios where Zephyr SDK should be looked up:
  39. # 1) Zephyr specified as toolchain (ZEPHYR_SDK_INSTALL_DIR still used if defined)
  40. # 2) No toolchain specified == Default to Zephyr toolchain (Linux only)
  41. # Until we completely deprecate it
  42. if(("zephyr" STREQUAL ${ZEPHYR_TOOLCHAIN_VARIANT}) OR
  43. ((NOT DEFINED ZEPHYR_TOOLCHAIN_VARIANT) AND (${CMAKE_HOST_SYSTEM_NAME} STREQUAL Linux)) OR
  44. (DEFINED ZEPHYR_SDK_INSTALL_DIR))
  45. # No toolchain was specified, so inform user that we will be searching.
  46. if (NOT DEFINED ZEPHYR_SDK_INSTALL_DIR AND
  47. NOT DEFINED ZEPHYR_TOOLCHAIN_VARIANT
  48. AND NOT CMAKE_SCRIPT_MODE_FILE)
  49. message(STATUS "ZEPHYR_TOOLCHAIN_VARIANT not set, trying to locate Zephyr SDK")
  50. endif()
  51. # This ensure packages are sorted in descending order.
  52. SET(CMAKE_FIND_PACKAGE_SORT_DIRECTION_CURRENT ${CMAKE_FIND_PACKAGE_SORT_DIRECTION})
  53. SET(CMAKE_FIND_PACKAGE_SORT_ORDER_CURRENT ${CMAKE_FIND_PACKAGE_SORT_ORDER})
  54. SET(CMAKE_FIND_PACKAGE_SORT_DIRECTION DEC)
  55. SET(CMAKE_FIND_PACKAGE_SORT_ORDER NATURAL)
  56. if(DEFINED ZEPHYR_SDK_INSTALL_DIR)
  57. # The Zephyr SDK will automatically set the toolchain variant.
  58. # To support Zephyr SDK tools (DTC, and other tools) with 3rd party toolchains
  59. # then we keep track of current toolchain variant.
  60. set(ZEPHYR_CURRENT_TOOLCHAIN_VARIANT ${ZEPHYR_TOOLCHAIN_VARIANT})
  61. find_package(Zephyr-sdk ${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION} REQUIRED QUIET HINTS $ENV{ZEPHYR_SDK_INSTALL_DIR})
  62. if(DEFINED ZEPHYR_CURRENT_TOOLCHAIN_VARIANT)
  63. set(ZEPHYR_TOOLCHAIN_VARIANT ${ZEPHYR_CURRENT_TOOLCHAIN_VARIANT})
  64. endif()
  65. else()
  66. find_package(Zephyr-sdk ${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION} REQUIRED QUIET PATHS
  67. /usr
  68. /usr/local
  69. /opt
  70. $ENV{HOME}
  71. $ENV{HOME}/.local
  72. $ENV{HOME}/.local/opt
  73. $ENV{HOME}/bin)
  74. endif()
  75. SET(CMAKE_FIND_PACKAGE_SORT_DIRECTION ${CMAKE_FIND_PACKAGE_SORT_DIRECTION_CURRENT})
  76. SET(CMAKE_FIND_PACKAGE_SORT_ORDER ${CMAKE_FIND_PACKAGE_SORT_ORDER_CURRENT})
  77. endif()
  78. if(NOT DEFINED ZEPHYR_TOOLCHAIN_VARIANT)
  79. if (NOT Zephyr-sdk_CONSIDERED_VERSIONS)
  80. set(error_msg "ZEPHYR_TOOLCHAIN_VARIANT not specified and no Zephyr SDK is installed.\n")
  81. string(APPEND error_msg "Please set ZEPHYR_TOOLCHAIN_VARIANT to the toolchain to use or install the Zephyr SDK.")
  82. if(NOT ZEPHYR_TOOLCHAIN_VARIANT AND NOT ZEPHYR_SDK_INSTALL_DIR)
  83. set(error_note "Note: If you are using Zephyr SDK 0.11.1 or 0.11.2, remember to set ZEPHYR_SDK_INSTALL_DIR and ZEPHYR_TOOLCHAIN_VARIANT")
  84. endif()
  85. else()
  86. # Note: When CMake mimimun version becomes >= 3.17, change this loop into:
  87. # foreach(version config IN ZIP_LISTS Zephyr-sdk_CONSIDERED_VERSIONS Zephyr-sdk_CONSIDERED_CONFIGS)
  88. set(error_msg "The Zephyr SDK version you are using is not supported, please update your SDK.\n")
  89. set(missing_version "You need SDK version ${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION} or newer.")
  90. foreach (version ${Zephyr-sdk_CONSIDERED_VERSIONS})
  91. if(${version} VERSION_GREATER ${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION})
  92. set(missing_version "You need SDK version ${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION} or compatible version.")
  93. endif()
  94. list(GET Zephyr-sdk_CONSIDERED_CONFIGS 0 zephyr-sdk-candidate)
  95. list(REMOVE_AT Zephyr-sdk_CONSIDERED_CONFIGS 0)
  96. get_filename_component(zephyr-sdk-path ${zephyr-sdk-candidate}/../.. ABSOLUTE)
  97. string(APPEND version_path " ${version} (${zephyr-sdk-path})")
  98. endforeach()
  99. string(APPEND error_msg "${missing_version}")
  100. string(APPEND error_msg "You have version(s):")
  101. string(APPEND error_msg "${version_path}")
  102. endif()
  103. message(FATAL_ERROR "${error_msg}
  104. The Zephyr SDK can be downloaded from:
  105. https://github.com/zephyrproject-rtos/sdk-ng/releases/download/v${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION}/zephyr-sdk-${TOOLCHAIN_ZEPHYR_MINIMUM_REQUIRED_VERSION}-setup.run
  106. ${error_note}
  107. ")
  108. endif()
  109. if(CMAKE_SCRIPT_MODE_FILE)
  110. if("${FORMAT}" STREQUAL "json")
  111. set(json "{\"ZEPHYR_TOOLCHAIN_VARIANT\" : \"${ZEPHYR_TOOLCHAIN_VARIANT}\", ")
  112. string(APPEND json "\"SDK_VERSION\": \"${SDK_VERSION}\", ")
  113. string(APPEND json "\"ZEPHYR_SDK_INSTALL_DIR\" : \"${ZEPHYR_SDK_INSTALL_DIR}\"}")
  114. message("${json}")
  115. else()
  116. message(STATUS "ZEPHYR_TOOLCHAIN_VARIANT: ${ZEPHYR_TOOLCHAIN_VARIANT}")
  117. if(DEFINED SDK_VERSION)
  118. message(STATUS "SDK_VERSION: ${SDK_VERSION}")
  119. endif()
  120. if(DEFINED ZEPHYR_SDK_INSTALL_DIR)
  121. message(STATUS "ZEPHYR_SDK_INSTALL_DIR : ${ZEPHYR_SDK_INSTALL_DIR}")
  122. endif()
  123. endif()
  124. endif()