Skip to content

Commit

Permalink
libvpx: don't specify armv5 and armv6 toolchains explicitly
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
OldManYellsAtCloud authored and kraj committed Nov 20, 2023
1 parent 5e1ddd1 commit 82d0508
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions meta-oe/recipes-multimedia/webm/libvpx_1.13.1.bb
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 82d0508

Please sign in to comment.