aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorskandigraun <skandigraun@gmail.com>2023-11-18 11:51:15 +0100
committerKhem Raj <raj.khem@gmail.com>2023-11-19 19:47:47 -0800
commit82d05080390dbcca40364d4b80152528f3e4e203 (patch)
treec289ccc60f639c86be869ae49b69fd0d4e6ad885
parent5e1ddd1e7fdfa840efa207bd7750f5a3b0089060 (diff)
downloadmeta-openembedded-contrib-82d05080390dbcca40364d4b80152528f3e4e203.tar.gz
libvpx: don't specify armv5 and armv6 toolchains explicitly
The libvpx project has removed the support for these values, and the recipe can't be built anymore for these arch's when these values are used. The correct value for these arch's is `generic-gnu`, which is used as a default fallthrough value for all platforms in the recipe for arch's that are not specified explicitly. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb2
1 files changed, 0 insertions, 2 deletions
diff --git a/meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb b/meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb
index eab5546a1b..1354e2eb98 100644
--- a/meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb
+++ b/meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb
@@ -24,8 +24,6 @@ BUILD_LDFLAGS += "-pthread"
export CC
export LD = "${CC}"
-VPXTARGET:armv5te = "armv5te-linux-gcc"
-VPXTARGET:armv6 = "armv6-linux-gcc"
VPXTARGET:armv7a = "${@bb.utils.contains("TUNE_FEATURES","neon","armv7-linux-gcc","generic-gnu",d)}"
VPXTARGET ?= "generic-gnu"