diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2020-06-09 16:04:39 +0200 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2020-06-09 16:05:28 +0200 |
commit | 547d360604c083a21e7168d904506e055452d74f (patch) | |
tree | 2f14db887b64312537480efadea969d8934469a4 | |
parent | net-irc/weechat: x86 stable wrt bug #727316 (diff) | |
download | gentoo-547d360604c083a21e7168d904506e055452d74f.tar.gz gentoo-547d360604c083a21e7168d904506e055452d74f.tar.bz2 gentoo-547d360604c083a21e7168d904506e055452d74f.zip |
media-libs/libaom: Force neon on arm64
Fixes: https://bugs.gentoo.org/727432
Thanks to leio for the fix.
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
-rw-r--r-- | media-libs/libaom/libaom-2.0.0.ebuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/media-libs/libaom/libaom-2.0.0.ebuild b/media-libs/libaom/libaom-2.0.0.ebuild index 268395a26e4f..8e92d73e9986 100644 --- a/media-libs/libaom/libaom-2.0.0.ebuild +++ b/media-libs/libaom/libaom-2.0.0.ebuild @@ -50,7 +50,8 @@ multilib_src_configure() { -DENABLE_TOOLS=ON -DENABLE_WERROR=OFF - -DENABLE_NEON=$(usex cpu_flags_arm_neon ON OFF) + # neon support is assumed to be always enabled on arm64 + -DENABLE_NEON=$(usex cpu_flags_arm_neon ON $(usex arm64 ON OFF)) # ENABLE_DSPR2 / ENABLE_MSA for mips -DENABLE_MMX=$(usex cpu_flags_x86_mmx ON OFF) -DENABLE_SSE=$(usex cpu_flags_x86_sse ON OFF) |