From 6f29dac25a2ae4688da4f6cfbadab859de29a572 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Wed, 4 Jul 2018 15:58:08 -0500 Subject: [PATCH] toolchain: require Zephyr SDK 0.9.3 SDK 0.9.3 has been out for a while, to avoid inconsistency and false positive when filing bugs, require the latest version. Signed-off-by: Anas Nashif --- cmake/host-tools-zephyr.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/host-tools-zephyr.cmake b/cmake/host-tools-zephyr.cmake index b7ab3b83c21..bd7734a26d4 100644 --- a/cmake/host-tools-zephyr.cmake +++ b/cmake/host-tools-zephyr.cmake @@ -15,7 +15,7 @@ if(NOT ZEPHYR_SDK_INSTALL_DIR) return() endif() -set(REQUIRED_SDK_VER 0.9.2) +set(REQUIRED_SDK_VER 0.9.3) set(TOOLCHAIN_VENDOR zephyr) set(TOOLCHAIN_ARCH x86_64)