generic.cmake 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Configures CMake for using ccac
  3. find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}armclang PATH ${TOOLCHAIN_HOME}/bin NO_DEFAULT_PATH)
  4. set(triple arm-arm-none-eabi)
  5. set(CMAKE_DTS_PREPROCESSOR
  6. ${CMAKE_C_COMPILER}
  7. "--target=${triple}"
  8. # -march=armv6-m is added to silence the warnings:
  9. # 'armv4t' and 'arm7tdmi' is unsupported.
  10. # We only do preprocessing so the actual arch is not important.
  11. "-march=armv6-m"
  12. )
  13. set(CMAKE_C_COMPILER_TARGET ${triple})
  14. set(CMAKE_ASM_COMPILER_TARGET ${triple})
  15. set(CMAKE_CXX_COMPILER_TARGET ${triple})
  16. if(CMAKE_C_COMPILER STREQUAL CMAKE_C_COMPILER-NOTFOUND)
  17. message(FATAL_ERROR "Zephyr was unable to find the armclang compiler")
  18. endif()
  19. execute_process(
  20. COMMAND ${CMAKE_C_COMPILER} --version
  21. RESULT_VARIABLE ret
  22. OUTPUT_QUIET
  23. ERROR_QUIET
  24. )
  25. if(ret)
  26. message(FATAL_ERROR "Executing the below command failed. "
  27. "Are permissions set correctly? '${CMAKE_C_COMPILER} --version' "
  28. "And is the license setup correctly ?"
  29. )
  30. endif()