host-tools.cmake 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. # SPDX-License-Identifier: Apache-2.0
  2. include(${ZEPHYR_BASE}/cmake/toolchain/zephyr/host-tools.cmake)
  3. # dtc is an optional dependency
  4. find_program(
  5. DTC
  6. dtc
  7. )
  8. if(DTC)
  9. # Parse the 'dtc --version' output to find the installed version.
  10. set(MIN_DTC_VERSION 1.4.6)
  11. execute_process(
  12. COMMAND
  13. ${DTC} --version
  14. OUTPUT_VARIABLE dtc_version_output
  15. ERROR_VARIABLE dtc_error_output
  16. RESULT_VARIABLE dtc_status
  17. )
  18. if(${dtc_status} EQUAL 0)
  19. string(REGEX MATCH "Version: DTC ([0-9]+[.][0-9]+[.][0-9]+).*" out_var ${dtc_version_output})
  20. # Since it is optional, an outdated version is not an error. If an
  21. # outdated version is discovered, print a warning and proceed as if
  22. # DTC were not installed.
  23. if(${CMAKE_MATCH_1} VERSION_GREATER ${MIN_DTC_VERSION})
  24. message(STATUS "Found dtc: ${DTC} (found suitable version \"${CMAKE_MATCH_1}\", minimum required is \"${MIN_DTC_VERSION}\")")
  25. else()
  26. message(WARNING
  27. "Could NOT find dtc: Found unsuitable version \"${CMAKE_MATCH_1}\", but required is at least \"${MIN_DTC_VERSION}\" (found ${DTC}). Optional devicetree error checking with dtc will not be performed.")
  28. set(DTC DTC-NOTFOUND)
  29. endif()
  30. else()
  31. message(WARNING
  32. "Could NOT find working dtc: Found dtc (${DTC}), but failed to load with:\n ${dtc_error_output}")
  33. set(DTC DTC-NOTFOUND)
  34. endif()
  35. endif()
  36. # gperf is an optional dependency
  37. find_program(
  38. GPERF
  39. gperf
  40. )
  41. # openocd is an optional dependency
  42. find_program(
  43. OPENOCD
  44. openocd
  45. )
  46. # bossac is an optional dependency
  47. find_program(
  48. BOSSAC
  49. bossac
  50. )
  51. # imgtool is an optional dependency (the build may also fall back to
  52. # scripts/imgtool.py in the mcuboot repository if that's present in
  53. # some cases)
  54. find_program(
  55. IMGTOOL
  56. imgtool
  57. )
  58. # TODO: Should we instead find one qemu binary for each ARCH?
  59. # TODO: This will probably need to be re-organized when there exists more than one SDK.