generic.cmake 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. # SPDX-License-Identifier: Apache-2.0
  2. # Until we completely deprecate it
  3. if(NOT DEFINED ENV{GNUARMEMB_TOOLCHAIN_PATH})
  4. if(DEFINED ENV{GCCARMEMB_TOOLCHAIN_PATH})
  5. message(WARNING "GCCARMEMB_TOOLCHAIN_PATH is deprecated, please use GNUARMEMB_TOOLCHAIN_PATH instead")
  6. set(GNUARMEMB_TOOLCHAIN_PATH $ENV{GCCARMEMB_TOOLCHAIN_PATH})
  7. endif()
  8. endif()
  9. set_ifndef(GNUARMEMB_TOOLCHAIN_PATH "$ENV{GNUARMEMB_TOOLCHAIN_PATH}")
  10. set( GNUARMEMB_TOOLCHAIN_PATH ${GNUARMEMB_TOOLCHAIN_PATH} CACHE PATH "gnuarmemb install directory")
  11. assert( GNUARMEMB_TOOLCHAIN_PATH "GNUARMEMB_TOOLCHAIN_PATH is not set")
  12. if(NOT EXISTS ${GNUARMEMB_TOOLCHAIN_PATH})
  13. message(FATAL_ERROR "Nothing found at GNUARMEMB_TOOLCHAIN_PATH: '${GNUARMEMB_TOOLCHAIN_PATH}'")
  14. endif()
  15. set(TOOLCHAIN_HOME ${GNUARMEMB_TOOLCHAIN_PATH})
  16. set(COMPILER gcc)
  17. set(LINKER ld)
  18. set(BINTOOLS gnu)
  19. set(CROSS_COMPILE_TARGET arm-none-eabi)
  20. set(SYSROOT_TARGET arm-none-eabi)
  21. set(CROSS_COMPILE ${TOOLCHAIN_HOME}/bin/${CROSS_COMPILE_TARGET}-)
  22. set(SYSROOT_DIR ${TOOLCHAIN_HOME}/${SYSROOT_TARGET})
  23. set(TOOLCHAIN_HAS_NEWLIB ON CACHE BOOL "True if toolchain supports newlib")
  24. message(STATUS "Found toolchain: gnuarmemb (${GNUARMEMB_TOOLCHAIN_PATH})")