From 239ceb4c5be399e078a8cf800c82bd538d8f21e8 Mon Sep 17 00:00:00 2001 From: "Charles E. Youse" Date: Sun, 30 Jun 2019 16:43:30 -0700 Subject: [PATCH] soc/x86/apollo_lake: architecture is goldmont Update the -march flag passed to the compiler to reflect the underlying microarchitecture is 'goldmont'. Fixes: #17104 Signed-off-by: Charles E. Youse --- soc/x86/apollo_lake/CMakeLists.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/soc/x86/apollo_lake/CMakeLists.txt b/soc/x86/apollo_lake/CMakeLists.txt index 00787761df1..3b9e61016ef 100644 --- a/soc/x86/apollo_lake/CMakeLists.txt +++ b/soc/x86/apollo_lake/CMakeLists.txt @@ -3,7 +3,6 @@ zephyr_library() zephyr_library_include_directories(${ZEPHYR_BASE}/drivers) -zephyr_cc_option(-march=silvermont) -zephyr_cc_option_fallback(-march=atom -mtune=silvermont) +zephyr_cc_option(-march=goldmont) zephyr_library_sources(soc.c)