compiler_flags_template.cmake 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. # Overview of used compiler properties for gcc / g++ compilers.
  2. #
  3. # Define the flags your toolchain support, and keep the unsupported flags empty.
  4. #####################################################
  5. # This section covers flags related to optimization #
  6. #####################################################
  7. set_compiler_property(PROPERTY no_optimization)
  8. set_compiler_property(PROPERTY optimization_debug)
  9. set_compiler_property(PROPERTY optimization_speed)
  10. set_compiler_property(PROPERTY optimization_size)
  11. #######################################################
  12. # This section covers flags related to warning levels #
  13. #######################################################
  14. # Property for standard warning base in Zephyr, this will always bet set when compiling.
  15. set_compiler_property(PROPERTY warning_base)
  16. # GCC options for warning levels 1, 2, 3, when using `-DW=[1|2|3]`
  17. # Property for warning levels 1, 2, 3 in Zephyr when using `-DW=[1|2|3]`
  18. set_compiler_property(PROPERTY warning_dw_1)
  19. set_compiler_property(PROPERTY warning_dw_2)
  20. set_compiler_property(PROPERTY warning_dw_3)
  21. # Extended warning set supported by the compiler
  22. set_compiler_property(PROPERTY warning_extended)
  23. # Compiler property that will issue error if a declaration does not specify a type
  24. set_compiler_property(PROPERTY warning_error_implicit_int)
  25. # Compiler flags to use when compiling according to MISRA
  26. set_compiler_property(PROPERTY warning_error_misra_sane)
  27. ###########################################################################
  28. # This section covers flags related to C or C++ standards / standard libs #
  29. ###########################################################################
  30. # Compiler flags for C standard. The specific standard must be appended by user.
  31. # For example, gcc specifies this as: set_compiler_property(PROPERTY cstd -std=)
  32. set_compiler_property(PROPERTY cstd)
  33. # Compiler flags for disabling C standard include and instead specify include
  34. # dirs in nostdinc_include to use.
  35. set_compiler_property(PROPERTY nostdinc)
  36. set_compiler_property(PROPERTY nostdinc_include)
  37. # Compiler flags for disabling C++ standard include.
  38. set_compiler_property(TARGET compiler-cpp PROPERTY nostdincxx)
  39. # Required C++ flags when compiling C++ code
  40. set_property(TARGET compiler-cpp PROPERTY required)
  41. # Compiler flags to use for specific C++ dialects
  42. set_property(TARGET compiler-cpp PROPERTY dialect_cpp98)
  43. set_property(TARGET compiler-cpp PROPERTY dialect_cpp11)
  44. set_property(TARGET compiler-cpp PROPERTY dialect_cpp14)
  45. set_property(TARGET compiler-cpp PROPERTY dialect_cpp17)
  46. set_property(TARGET compiler-cpp PROPERTY dialect_cpp2a)
  47. set_property(TARGET compiler-cpp PROPERTY dialect_cpp20)
  48. set_property(TARGET compiler-cpp PROPERTY dialect_cpp2b)
  49. # Flag for disabling exeptions in C++
  50. set_property(TARGET compiler-cpp PROPERTY no_exceptions)
  51. # Flag for disabling rtti in C++
  52. set_property(TARGET compiler-cpp PROPERTY no_rtti)
  53. ###################################################
  54. # This section covers all remaining C / C++ flags #
  55. ###################################################
  56. # Flags for coverage generation
  57. set_compiler_property(PROPERTY coverage)
  58. # Security canaries flags.
  59. set_compiler_property(PROPERTY security_canaries)
  60. set_compiler_property(PROPERTY security_fortify)
  61. # Flag for a hosted (no-freestanding) application
  62. set_compiler_property(PROPERTY hosted)
  63. # gcc flag for a freestanding application
  64. set_compiler_property(PROPERTY freestanding)
  65. # Flag to include debugging symbol in compilation
  66. set_compiler_property(PROPERTY debug)
  67. set_compiler_property(PROPERTY no_common)
  68. # Flags for imacros. The specific header must be appended by user.
  69. set_compiler_property(PROPERTY imacros)
  70. # Compiler flags for sanitizing.
  71. set_compiler_property(PROPERTY sanitize_address)
  72. set_compiler_property(PROPERTY sanitize_undefined)
  73. # Compiler flag for turning off thread-safe initialization of local statics
  74. set_property(TARGET compiler-cpp PROPERTY no_threadsafe_statics)
  75. # Required ASM flags when compiling
  76. set_property(TARGET asm PROPERTY required)