generic.cmake 827 B

1234567891011121314151617181920212223242526272829
  1. # SPDX-License-Identifier: Apache-2.0
  2. set_ifndef(CC gcc)
  3. find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}${CC} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  4. find_program(CMAKE_GCOV ${CROSS_COMPILE}gcov PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  5. if(CMAKE_C_COMPILER STREQUAL CMAKE_C_COMPILER-NOTFOUND)
  6. message(FATAL_ERROR "Zephyr was unable to find the toolchain. Is the environment misconfigured?
  7. User-configuration:
  8. ZEPHYR_TOOLCHAIN_VARIANT: ${ZEPHYR_TOOLCHAIN_VARIANT}
  9. Internal variables:
  10. CROSS_COMPILE: ${CROSS_COMPILE}
  11. TOOLCHAIN_HOME: ${TOOLCHAIN_HOME}
  12. ")
  13. endif()
  14. execute_process(
  15. COMMAND ${CMAKE_C_COMPILER} --version
  16. RESULT_VARIABLE ret
  17. OUTPUT_QUIET
  18. ERROR_QUIET
  19. )
  20. if(ret)
  21. message(FATAL_ERROR "Executing the below command failed. Are permissions set correctly?
  22. '${CMAKE_C_COMPILER} --version'
  23. "
  24. )
  25. endif()