toolchain: Fix selection of HAS_NEWLIB_LIBC_NANO for zephyr SDK

HAS_NEWLIB_LIBC_NANO only should be set on arch that have nano.spec
which is ARM, ARC, and RISCV.

Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
This commit is contained in:
Kumar Gala 2020-01-29 21:33:01 -06:00 committed by Kumar Gala
commit ed938bf7e7

View file

@ -5,4 +5,4 @@
config TOOLCHAIN_ZEPHYR_0_11
def_bool y
select HAS_NEWLIB_LIBC_NANO
select HAS_NEWLIB_LIBC_NANO if (ARC || ARM || RISCV)