From 9d3261927eb9e6fc633cf6f36df68fb1283d6a47 Mon Sep 17 00:00:00 2001 From: Kumar Gala Date: Thu, 8 Aug 2019 11:30:54 -0500 Subject: [PATCH] cmake: Bump min version to 0.10.2 We want to use the riscv64 toolchain across the board for RISC-V. That requires a min of the 0.10.2 SDK, so bump the version before we make that change. Signed-off-by: Kumar Gala --- cmake/toolchain/zephyr/host-tools.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/toolchain/zephyr/host-tools.cmake b/cmake/toolchain/zephyr/host-tools.cmake index 3a5be5c7c35..c036837d84a 100644 --- a/cmake/toolchain/zephyr/host-tools.cmake +++ b/cmake/toolchain/zephyr/host-tools.cmake @@ -17,7 +17,7 @@ if(NOT ZEPHYR_SDK_INSTALL_DIR) return() endif() -set(REQUIRED_SDK_VER 0.10.1) +set(REQUIRED_SDK_VER 0.10.2) set(TOOLCHAIN_VENDOR zephyr) set(TOOLCHAIN_ARCH x86_64)