target.cmake 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. # SPDX-License-Identifier: Apache-2.0
  2. set_ifndef(C++ g++)
  3. # Configures CMake for using GCC, this script is re-used by several
  4. # GCC-based toolchains
  5. find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}${CC} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  6. if(${CMAKE_C_COMPILER} STREQUAL CMAKE_C_COMPILER-NOTFOUND)
  7. message(FATAL_ERROR "C compiler ${CROSS_COMPILE}${CC} not found - Please check your toolchain installation")
  8. endif()
  9. if(CONFIG_CPLUSPLUS)
  10. set(cplusplus_compiler ${CROSS_COMPILE}${C++})
  11. else()
  12. if(EXISTS ${CROSS_COMPILE}${C++})
  13. set(cplusplus_compiler ${CROSS_COMPILE}${C++})
  14. else()
  15. # When the toolchain doesn't support C++, and we aren't building
  16. # with C++ support just set it to something so CMake doesn't
  17. # crash, it won't actually be called
  18. set(cplusplus_compiler ${CMAKE_C_COMPILER})
  19. endif()
  20. endif()
  21. find_program(CMAKE_CXX_COMPILER ${cplusplus_compiler} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  22. set(NOSTDINC "")
  23. # Note that NOSYSDEF_CFLAG may be an empty string, and
  24. # set_ifndef() does not work with empty string.
  25. if(NOT DEFINED NOSYSDEF_CFLAG)
  26. set(NOSYSDEF_CFLAG -undef)
  27. endif()
  28. foreach(file_name include/stddef.h include-fixed/limits.h)
  29. execute_process(
  30. COMMAND ${CMAKE_C_COMPILER} --print-file-name=${file_name}
  31. OUTPUT_VARIABLE _OUTPUT
  32. )
  33. get_filename_component(_OUTPUT "${_OUTPUT}" DIRECTORY)
  34. string(REGEX REPLACE "\n" "" _OUTPUT "${_OUTPUT}")
  35. list(APPEND NOSTDINC ${_OUTPUT})
  36. endforeach()
  37. include(${ZEPHYR_BASE}/cmake/gcc-m-cpu.cmake)
  38. if("${ARCH}" STREQUAL "arm")
  39. include(${ZEPHYR_BASE}/cmake/compiler/gcc/target_arm.cmake)
  40. elseif("${ARCH}" STREQUAL "arm64")
  41. include(${ZEPHYR_BASE}/cmake/compiler/gcc/target_arm64.cmake)
  42. elseif("${ARCH}" STREQUAL "arc")
  43. list(APPEND TOOLCHAIN_C_FLAGS
  44. -mcpu=${GCC_M_CPU}
  45. )
  46. elseif("${ARCH}" STREQUAL "riscv")
  47. include(${CMAKE_CURRENT_LIST_DIR}/target_riscv.cmake)
  48. elseif("${ARCH}" STREQUAL "x86")
  49. include(${CMAKE_CURRENT_LIST_DIR}/target_x86.cmake)
  50. elseif("${ARCH}" STREQUAL "sparc")
  51. include(${CMAKE_CURRENT_LIST_DIR}/target_sparc.cmake)
  52. endif()
  53. # This libgcc code is partially duplicated in compiler/*/target.cmake
  54. execute_process(
  55. COMMAND ${CMAKE_C_COMPILER} ${TOOLCHAIN_C_FLAGS} --print-libgcc-file-name
  56. OUTPUT_VARIABLE LIBGCC_FILE_NAME
  57. OUTPUT_STRIP_TRAILING_WHITESPACE
  58. )
  59. assert_exists(LIBGCC_FILE_NAME)
  60. get_filename_component(LIBGCC_DIR ${LIBGCC_FILE_NAME} DIRECTORY)
  61. assert_exists(LIBGCC_DIR)
  62. LIST(APPEND LIB_INCLUDE_DIR "-L\"${LIBGCC_DIR}\"")
  63. LIST(APPEND TOOLCHAIN_LIBS gcc)
  64. if(SYSROOT_DIR)
  65. # The toolchain has specified a sysroot dir that we can use to set
  66. # the libc path's
  67. execute_process(
  68. COMMAND ${CMAKE_C_COMPILER} ${TOOLCHAIN_C_FLAGS} --print-multi-directory
  69. OUTPUT_VARIABLE NEWLIB_DIR
  70. OUTPUT_STRIP_TRAILING_WHITESPACE
  71. )
  72. set(LIBC_LIBRARY_DIR "\"${SYSROOT_DIR}\"/lib/${NEWLIB_DIR}")
  73. endif()
  74. # For CMake to be able to test if a compiler flag is supported by the
  75. # toolchain we need to give CMake the necessary flags to compile and
  76. # link a dummy C file.
  77. #
  78. # CMake checks compiler flags with check_c_compiler_flag() (Which we
  79. # wrap with target_cc_option() in extentions.cmake)
  80. foreach(isystem_include_dir ${NOSTDINC})
  81. list(APPEND isystem_include_flags -isystem "\"${isystem_include_dir}\"")
  82. endforeach()
  83. # The CMAKE_REQUIRED_FLAGS variable is used by check_c_compiler_flag()
  84. # (and other commands which end up calling check_c_source_compiles())
  85. # to add additional compiler flags used during checking. These flags
  86. # are unused during "real" builds of Zephyr source files linked into
  87. # the final executable.
  88. #
  89. # Appending onto any existing values lets users specify
  90. # toolchain-specific flags at generation time.
  91. list(APPEND CMAKE_REQUIRED_FLAGS
  92. -nostartfiles
  93. -nostdlib
  94. ${isystem_include_flags}
  95. -Wl,--unresolved-symbols=ignore-in-object-files
  96. -Wl,--entry=0 # Set an entry point to avoid a warning
  97. )
  98. string(REPLACE ";" " " CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")