target_toolchain.cmake 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. # SPDX-License-Identifier: Apache-2.0
  2. # No official documentation exists for the "Generic" value, except their wiki.
  3. #
  4. # https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/CrossCompiling:
  5. # CMAKE_SYSTEM_NAME : this one is mandatory, it is the name of the target
  6. # system, i.e. the same as CMAKE_SYSTEM_NAME would have if CMake would run
  7. # on the target system. Typical examples are "Linux" and "Windows". This
  8. # variable is used for constructing the file names of the platform files
  9. # like Linux.cmake or Windows-gcc.cmake. If your target is an embedded
  10. # system without OS set CMAKE_SYSTEM_NAME to "Generic".
  11. set(CMAKE_SYSTEM_NAME Generic)
  12. # https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_PROCESSOR.html:
  13. # The name of the CPU CMake is building for.
  14. #
  15. # https://gitlab.kitware.com/cmake/community/wikis/doc/cmake/CrossCompiling:
  16. # CMAKE_SYSTEM_PROCESSOR : optional, processor (or hardware) of the
  17. # target system. This variable is not used very much except for one
  18. # purpose, it is used to load a
  19. # CMAKE_SYSTEM_NAME-compiler-CMAKE_SYSTEM_PROCESSOR.cmake file,
  20. # which can be used to modify settings like compiler flags etc. for
  21. # the target
  22. set(CMAKE_SYSTEM_PROCESSOR ${ARCH})
  23. # https://cmake.org/cmake/help/latest/variable/CMAKE_SYSTEM_VERSION.html:
  24. # When the CMAKE_SYSTEM_NAME variable is set explicitly to enable cross
  25. # compiling then the value of CMAKE_SYSTEM_VERSION must also be set
  26. # explicitly to specify the target system version.
  27. set(CMAKE_SYSTEM_VERSION ${PROJECT_VERSION})
  28. # We are not building dynamically loadable libraries
  29. set(BUILD_SHARED_LIBS OFF)
  30. # Custom targets for compiler and linker flags.
  31. add_custom_target(asm)
  32. add_custom_target(compiler)
  33. add_custom_target(compiler-cpp)
  34. add_custom_target(linker)
  35. if(NOT (COMPILER STREQUAL "host-gcc"))
  36. include(${TOOLCHAIN_ROOT}/cmake/toolchain/${ZEPHYR_TOOLCHAIN_VARIANT}/target.cmake)
  37. endif()
  38. # The 'generic' compiler and the 'target' compiler might be different,
  39. # so we unset the 'generic' one and thereby force the 'target' to
  40. # re-set it.
  41. unset(CMAKE_C_COMPILER)
  42. unset(CMAKE_C_COMPILER CACHE)
  43. # A toolchain consist of a compiler and a linker.
  44. # In Zephyr, toolchains require a port under cmake/toolchain/.
  45. # Each toolchain port must set COMPILER and LINKER.
  46. # E.g. toolchain/llvm may pick {clang, ld} or {clang, lld}.
  47. add_custom_target(bintools)
  48. include(${TOOLCHAIN_ROOT}/cmake/compiler/${COMPILER}/target.cmake OPTIONAL)
  49. include(${TOOLCHAIN_ROOT}/cmake/linker/${LINKER}/target.cmake OPTIONAL)
  50. include(${CMAKE_CURRENT_LIST_DIR}/bintools/bintools_template.cmake)
  51. include(${TOOLCHAIN_ROOT}/cmake/bintools/${BINTOOLS}/target.cmake OPTIONAL)