generic.cmake 1012 B

123456789101112131415161718192021222324252627282930
  1. # SPDX-License-Identifier: Apache-2.0
  2. set_ifndef(ARMCLANG_TOOLCHAIN_PATH "$ENV{ARMCLANG_TOOLCHAIN_PATH}")
  3. set(ARMCLANG_TOOLCHAIN_PATH ${ARMCLANG_TOOLCHAIN_PATH} CACHE PATH "armclang tools install directory")
  4. assert(ARMCLANG_TOOLCHAIN_PATH "ARMCLANG_TOOLCHAIN_PATH is not set")
  5. if(${CMAKE_VERSION} VERSION_LESS 3.21
  6. AND NOT ${CMAKE_GENERATOR} STREQUAL Ninja
  7. )
  8. message(FATAL_ERROR "ARMClang Toolchain and '${CMAKE_GENERATOR}' generator "
  9. "doesn't work properly for target object files on CMake version: "
  10. "${CMAKE_VERSION}. Use the 'Ninja' generator or update to CMake >= 3.21."
  11. )
  12. endif()
  13. if(NOT EXISTS ${ARMCLANG_TOOLCHAIN_PATH})
  14. message(FATAL_ERROR "Nothing found at ARMCLANG_TOOLCHAIN_PATH: '${ARMCLANG_TOOLCHAIN_PATH}'")
  15. endif()
  16. set(TOOLCHAIN_HOME ${ARMCLANG_TOOLCHAIN_PATH})
  17. set(COMPILER armclang)
  18. set(LINKER armlink)
  19. set(BINTOOLS armclang)
  20. set(SYSROOT_TARGET arm)
  21. set(CROSS_COMPILE ${TOOLCHAIN_HOME}/bin/)
  22. set(TOOLCHAIN_HAS_NEWLIB OFF CACHE BOOL "True if toolchain supports newlib")