You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
392 B
23 lines
392 B
set(CORTEX_M4F_COMMON_OPTIONS
|
|
-mthumb
|
|
-mcpu=cortex-m4
|
|
-march=armv7e-m
|
|
-mfloat-abi=hard
|
|
-mfpu=fpv4-sp-d16
|
|
-fsingle-precision-constant
|
|
-Wdouble-promotion
|
|
)
|
|
|
|
set(CORTEX_M4F_COMPILE_OPTIONS
|
|
)
|
|
|
|
set(CORTEX_M4F_LINK_OPTIONS
|
|
)
|
|
|
|
set(CORTEX_M4F_DEFINITIONS
|
|
__FPU_PRESENT=1
|
|
ARM_MATH_CM4
|
|
ARM_MATH_MATRIX_CHECK
|
|
ARM_MATH_ROUNDING
|
|
UNALIGNED_SUPPORT_DISABLE
|
|
)
|