compiler_flags.cmake 483 B

123456789
  1. # First step is to inherit all properties from gcc, as clang is compatible with most flags.
  2. include(${ZEPHYR_BASE}/cmake/compiler/clang/compiler_flags.cmake)
  3. # Required ASM flags when using armclang, this should be handled by CMake, but
  4. # fails because of: https://gitlab.kitware.com/cmake/cmake/-/issues/19963
  5. set_property(TARGET asm APPEND PROPERTY required "--target=${triple}")
  6. # Only the ARM Compiler C library is currently supported.
  7. set_compiler_property(PROPERTY nostdinc)