compiler_flags.cmake 580 B

12345678910111213
  1. # No special flags are needed for xcc.
  2. # Only select whether gcc or clang flags should be inherited.
  3. if(CC STREQUAL "clang")
  4. include(${ZEPHYR_BASE}/cmake/compiler/clang/compiler_flags.cmake)
  5. else()
  6. include(${ZEPHYR_BASE}/cmake/compiler/gcc/compiler_flags.cmake)
  7. # XCC is based on GCC 4.2 which has a somewhat pedantic take on the
  8. # fact that linkage semantics differed between C99 and GNU at the
  9. # time. Suppress the warning, it's the best we can do given that
  10. # it's a legacy compiler.
  11. set_compiler_property(APPEND PROPERTY warning_base "-fgnu89-inline")
  12. endif()