1
0
mirror of https://git.yoctoproject.org/meta-arm synced 2026-05-07 04:58:57 +00:00

arm/scp-firmware: disable clang builds

We only build with our binary GCC right now, so disable clang from
trying to get involved. This solves the missing strip problem where
do_populate_sysroot wants to use llvm-strip but it hasn't been added
to the sysroot.

Signed-off-by: Ross Burton <ross.burton@arm.com>
This commit is contained in:
Ross Burton
2022-02-23 19:34:14 +00:00
parent 7dd00e4d71
commit 9d17e4e305
@@ -19,6 +19,8 @@ SCP_LOG_LEVEL ?= "WARN"
INHIBIT_DEFAULT_DEPS = "1"
DEPENDS = "virtual/arm-none-eabi-gcc-native"
# For now we only build with GCC, so stop meta-clang trying to get involved
TOOLCHAIN = "gcc"
SCP_BUILD_STR = "${@bb.utils.contains('SCP_BUILD_RELEASE', '1', 'release', 'debug', d)}"