We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b54f1a9 commit d4ce292Copy full SHA for d4ce292
cmake/generic_toolchain.cmake
@@ -50,7 +50,9 @@ assert(ZEPHYR_TOOLCHAIN_VARIANT "Zephyr toolchain variant invalid: please set th
50
51
# Pick host system's toolchain if we are targeting posix
52
if((${ARCH} STREQUAL "posix") OR (${ARCH} STREQUAL "x86_64"))
53
- set(ZEPHYR_TOOLCHAIN_VARIANT "host")
+ if(NOT "${ZEPHYR_TOOLCHAIN_VARIANT}" STREQUAL "llvm")
54
+ set(ZEPHYR_TOOLCHAIN_VARIANT "host")
55
+ endif()
56
endif()
57
58
# Configure the toolchain based on what SDK/toolchain is in use.
0 commit comments