cmake: compiler: Added property flag for optimization fast
CMSIS modules dsp and nn sets the optimization flag -Ofast for their libraries. I've now made a new compiler property optimization_fast to avoid using ifdefs in the cmsis CMakeLists.txt files. I've update GCC and arcmwdt (not sure if arcmwdt supports -Ofast) Signed-off-by: Lars-Ove Karlsson <lars-ove.karlsson@iar.com>
This commit is contained in:
parent
374f80a917
commit
a43bca0a8c
6 changed files with 9 additions and 5 deletions
|
@ -14,7 +14,8 @@ list(APPEND CXX_EXCLUDED_OPTIONS
|
|||
set_compiler_property(PROPERTY no_optimization -O0)
|
||||
set_compiler_property(PROPERTY optimization_debug -O0)
|
||||
set_compiler_property(PROPERTY optimization_speed -O2)
|
||||
set_compiler_property(PROPERTY optimization_size -Os)
|
||||
set_compiler_property(PROPERTY optimization_size -Os)
|
||||
set_compiler_property(PROPERTY optimization_fast -O3)
|
||||
|
||||
#######################################################
|
||||
# This section covers flags related to warning levels #
|
||||
|
|
|
@ -15,6 +15,8 @@ set_compiler_property(PROPERTY optimization_size)
|
|||
|
||||
set_compiler_property(PROPERTY optimization_size_aggressive)
|
||||
|
||||
set_compiler_property(PROPERTY optimization_fast)
|
||||
|
||||
#######################################################
|
||||
# This section covers flags related to warning levels #
|
||||
#######################################################
|
||||
|
|
|
@ -21,6 +21,7 @@ endif()
|
|||
set_compiler_property(PROPERTY optimization_speed -O2)
|
||||
set_compiler_property(PROPERTY optimization_size -Os)
|
||||
set_compiler_property(PROPERTY optimization_size_aggressive -Oz)
|
||||
set_compiler_property(PROPERTY optimization_fast -Ofast)
|
||||
|
||||
if(CMAKE_C_COMPILER_VERSION GREATER_EQUAL "4.5.0")
|
||||
set_compiler_property(PROPERTY optimization_lto -flto=auto)
|
||||
|
|
|
@ -17,6 +17,8 @@ set_compiler_property(PROPERTY optimization_size -Ohz)
|
|||
|
||||
set_compiler_property(PROPERTY optimization_size_aggressive -Ohz)
|
||||
|
||||
set_compiler_property(PROPERTY optimization_fast --no_size_constraints)
|
||||
|
||||
#######################################################
|
||||
# This section covers flags related to warning levels #
|
||||
#######################################################
|
||||
|
|
|
@ -8,7 +8,7 @@ if(CONFIG_CMSIS_DSP)
|
|||
|
||||
zephyr_library()
|
||||
|
||||
zephyr_library_compile_options(-Ofast)
|
||||
zephyr_library_compile_options($<TARGET_PROPERTY:compiler,optimization_fast>)
|
||||
|
||||
zephyr_include_directories(
|
||||
${CMSIS_DSP_DIR}/Include
|
||||
|
@ -47,8 +47,6 @@ if(CONFIG_CMSIS_DSP)
|
|||
endif()
|
||||
endif()
|
||||
|
||||
zephyr_library_compile_options(-Ofast)
|
||||
|
||||
zephyr_compile_definitions_ifndef(CONFIG_ARM __GNUC_PYTHON__)
|
||||
|
||||
# BasicMathFunctions
|
||||
|
|
|
@ -8,7 +8,7 @@ if(CONFIG_CMSIS_NN)
|
|||
|
||||
zephyr_library()
|
||||
|
||||
zephyr_library_compile_options(-Ofast)
|
||||
zephyr_library_compile_options($<TARGET_PROPERTY:compiler,optimization_fast>)
|
||||
|
||||
zephyr_include_directories(${CMSIS_NN_DIR}/Include)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue