Merge pull request #14411 from hugueskamba/hk_cmake_fix_cortex_a9_warning

CMake: Fix Cortex-A9 flags for GCC_ARM toolchain
pull/14435/head
Martin Kojtal 2021-03-12 15:12:05 +00:00 committed by GitHub
commit 9d48bfecb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -5,9 +5,8 @@ if(${MBED_TOOLCHAIN} STREQUAL "GCC_ARM")
list(APPEND common_options
"-mthumb-interwork"
"-marm"
"-march=armv7-a"
"-mfpu=vfpv3"
"-mfloat-abi=hard"
"-mfloat-abi=softfp"
"-mno-unaligned-access"
"-mcpu=cortex-a9"
)