target.cmake 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. # find the compilers for C, CPP, assembly
  2. find_program(CMAKE_C_COMPILER ${CROSS_COMPILE}armclang PATH ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  3. find_program(CMAKE_CXX_COMPILER ${CROSS_COMPILE}armclang PATH ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  4. find_program(CMAKE_ASM_COMPILER ${CROSS_COMPILE}armclang PATH ${TOOLCHAIN_HOME} NO_DEFAULT_PATH)
  5. # The CMAKE_REQUIRED_FLAGS variable is used by check_c_compiler_flag()
  6. # (and other commands which end up calling check_c_source_compiles())
  7. # to add additional compiler flags used during checking. These flags
  8. # are unused during "real" builds of Zephyr source files linked into
  9. # the final executable.
  10. #
  11. include(${ZEPHYR_BASE}/cmake/gcc-m-cpu.cmake)
  12. set(CMAKE_SYSTEM_PROCESSOR ${GCC_M_CPU})
  13. list(APPEND TOOLCHAIN_C_FLAGS
  14. -fshort-enums
  15. )
  16. if(CONFIG_ARM64)
  17. list(APPEND TOOLCHAIN_C_FLAGS -mcpu=${GCC_M_CPU})
  18. list(APPEND TOOLCHAIN_C_FLAGS -mabi=lp64)
  19. list(APPEND TOOLCHAIN_LD_FLAGS -mabi=lp64)
  20. else()
  21. list(APPEND TOOLCHAIN_C_FLAGS -mcpu=${GCC_M_CPU})
  22. if(CONFIG_COMPILER_ISA_THUMB2)
  23. list(APPEND TOOLCHAIN_C_FLAGS -mthumb)
  24. endif()
  25. list(APPEND TOOLCHAIN_C_FLAGS -mabi=aapcs)
  26. # Defines a mapping from GCC_M_CPU to FPU
  27. if(CONFIG_CPU_HAS_FPU_DOUBLE_PRECISION)
  28. set(PRECISION_TOKEN)
  29. else()
  30. set(PRECISION_TOKEN sp-)
  31. endif()
  32. set(FPU_FOR_cortex-m4 fpv4-${PRECISION_TOKEN}d16)
  33. set(FPU_FOR_cortex-m7 fpv5-${PRECISION_TOKEN}d16)
  34. set(FPU_FOR_cortex-m33 fpv5-${PRECISION_TOKEN}d16)
  35. if(CONFIG_FPU)
  36. list(APPEND TOOLCHAIN_C_FLAGS -mfpu=${FPU_FOR_${GCC_M_CPU}})
  37. if (CONFIG_FP_SOFTABI)
  38. list(APPEND TOOLCHAIN_C_FLAGS -mfloat-abi=softfp)
  39. elseif(CONFIG_FP_HARDABI)
  40. list(APPEND TOOLCHAIN_C_FLAGS -mfloat-abi=hard)
  41. endif()
  42. endif()
  43. endif()
  44. foreach(file_name include/stddef.h)
  45. execute_process(
  46. COMMAND ${CMAKE_C_COMPILER} --print-file-name=${file_name}
  47. OUTPUT_VARIABLE _OUTPUT
  48. )
  49. get_filename_component(_OUTPUT "${_OUTPUT}" DIRECTORY)
  50. string(REGEX REPLACE "\n" "" _OUTPUT ${_OUTPUT})
  51. list(APPEND NOSTDINC ${_OUTPUT})
  52. endforeach()
  53. foreach(isystem_include_dir ${NOSTDINC})
  54. list(APPEND isystem_include_flags -isystem ${isystem_include_dir})
  55. endforeach()
  56. set(CMAKE_REQUIRED_FLAGS ${isystem_include_flags})
  57. string(REPLACE ";" " " CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS}")
  58. if(CONFIG_ARMCLANG_STD_LIBC)
  59. # Zephyr requires AEABI portability to ensure correct functioning of the C
  60. # library, for example error numbers, errno.h.
  61. list(APPEND TOOLCHAIN_C_FLAGS -D_AEABI_PORTABILITY_LEVEL=1)
  62. endif()