target.cmake 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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(CONFIG_CPLUSPLUS)
  7. set(cplusplus_compiler ${CROSS_COMPILE}${C++})
  8. else()
  9. if(EXISTS ${CROSS_COMPILE}${C++})
  10. set(cplusplus_compiler ${CROSS_COMPILE}${C++})
  11. else()
  12. # When the toolchain doesn't support C++, and we aren't building
  13. # with C++ support just set it to something so CMake doesn't
  14. # crash, it won't actually be called
  15. set(cplusplus_compiler ${CMAKE_C_COMPILER})
  16. endif()
  17. endif()
  18. find_program(CMAKE_CXX_COMPILER ${cplusplus_compiler} PATHS ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  19. set(NOSTDINC "")
  20. # Note that NOSYSDEF_CFLAG may be an empty string, and
  21. # set_ifndef() does not work with empty string.
  22. if(NOT DEFINED NOSYSDEF_CFLAG)
  23. set(NOSYSDEF_CFLAG -undef)
  24. endif()
  25. foreach(file_name include/stddef.h include-fixed/limits.h)
  26. execute_process(
  27. COMMAND ${CMAKE_C_COMPILER} --print-file-name=${file_name}
  28. OUTPUT_VARIABLE _OUTPUT
  29. )
  30. get_filename_component(_OUTPUT "${_OUTPUT}" DIRECTORY)
  31. string(REGEX REPLACE "\n" "" _OUTPUT "${_OUTPUT}")
  32. list(APPEND NOSTDINC ${_OUTPUT})
  33. endforeach()
  34. list(APPEND TOOLCHAIN_LIBS
  35. gcc
  36. hal
  37. )
  38. # For CMake to be able to test if a compiler flag is supported by the
  39. # toolchain we need to give CMake the necessary flags to compile and
  40. # link a dummy C file.
  41. #
  42. # CMake checks compiler flags with check_c_compiler_flag() (Which we
  43. # wrap with target_cc_option() in extentions.cmake)
  44. foreach(isystem_include_dir ${NOSTDINC})
  45. list(APPEND isystem_include_flags -isystem "\"${isystem_include_dir}\"")
  46. endforeach()
  47. # The CMAKE_REQUIRED_FLAGS variable is used by check_c_compiler_flag()
  48. # (and other commands which end up calling check_c_source_compiles())
  49. # to add additional compiler flags used during checking. These flags
  50. # are unused during "real" builds of Zephyr source files linked into
  51. # the final executable.
  52. #
  53. # Appending onto any existing values lets users specify
  54. # toolchain-specific flags at generation time.
  55. list(APPEND CMAKE_REQUIRED_FLAGS -nostartfiles -nostdlib ${isystem_include_flags} -Wl,--unresolved-symbols=ignore-in-object-files)
  56. string(REPLACE ";" " " CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")