target_toolchain_flags.cmake 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # Uniquely identify the toolchain wrt. it's capabilities.
  2. #
  3. # What we are looking for, is a signature definition that is defined
  4. # like this:
  5. # * The MD5 sum of the compiler itself. A MD5 checksum is taken of the content
  6. # after symlinks are resolved. This ensure that if the content changes, then
  7. # the MD5 will also change (as example toolchain upgrade in same folder)
  8. # * The CMAKE_C_COMPILER itself. This may be a symlink, but it ensures that
  9. # multiple symlinks pointing to same executable will generate different
  10. # signatures, as example: clang, gcc, arm-zephyr-eabi-gcc, links pointing to
  11. # ccache will generate unique signatures
  12. # * CMAKE_C_COMPILER_ID is taking the CMake compiler id for extra signature.
  13. # * CMAKE_C_COMPILER_VERSION will ensure that even when using the previous
  14. # methods, where an upgraded compiler could have same signature due to ccache
  15. # usage and symbolic links, then the upgraded compiler will have new version
  16. # and thus generate a new signature.
  17. #
  18. # Toolchains with the same signature will always support the same set of flags.
  19. #
  20. file(MD5 ${CMAKE_C_COMPILER} CMAKE_C_COMPILER_MD5_SUM)
  21. set(TOOLCHAIN_SIGNATURE ${CMAKE_C_COMPILER_MD5_SUM})
  22. # Extend the CMAKE_C_COMPILER_MD5_SUM with the compiler signature.
  23. string(MD5 COMPILER_SIGNATURE ${CMAKE_C_COMPILER}_${CMAKE_C_COMPILER_ID}_${CMAKE_C_COMPILER_VERSION})
  24. set(TOOLCHAIN_SIGNATURE ${TOOLCHAIN_SIGNATURE}_${COMPILER_SIGNATURE})
  25. # Loading of templates are strictly not needed as they does not set any
  26. # properties.
  27. # They purely provides an overview as well as a starting point for supporting
  28. # a new toolchain.
  29. include(${CMAKE_CURRENT_LIST_DIR}/compiler/compiler_flags_template.cmake)
  30. include(${CMAKE_CURRENT_LIST_DIR}/linker/linker_flags_template.cmake)
  31. # Configure the toolchain flags based on what toolchain technology is used
  32. # (gcc, host-gcc etc.)
  33. include(${TOOLCHAIN_ROOT}/cmake/compiler/${COMPILER}/compiler_flags.cmake OPTIONAL)
  34. include(${TOOLCHAIN_ROOT}/cmake/linker/${LINKER}/linker_flags.cmake OPTIONAL)