[oe-commits] [openembedded-core] 09/25: x264: Fix build on mips architectures

git at git.openembedded.org git at git.openembedded.org
Thu Dec 22 08:50:57 UTC 2016


rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 302124c1cc8353f4d0e13ab9ba9057d6b3862bde
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Mon Dec 19 09:19:14 2016 -0800

    x264: Fix build on mips architectures
    
    Disable asm to fix
    
    | You specified a pre-MSA CPU in your CFLAGS.
    | If you really want to run on such a CPU, configure with --disable-asm.
    
    Signed-off-by: Khem Raj <raj.khem at gmail.com>
    Signed-off-by: Ross Burton <ross.burton at intel.com>
---
 meta/recipes-multimedia/x264/x264_git.bb | 1 +
 1 file changed, 1 insertion(+)

diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb
index e790681..1dafdd5 100644
--- a/meta/recipes-multimedia/x264/x264_git.bb
+++ b/meta/recipes-multimedia/x264/x264_git.bb
@@ -24,6 +24,7 @@ X264_DISABLE_ASM = ""
 X264_DISABLE_ASM_armv4 = "--disable-asm"
 X264_DISABLE_ASM_armv5 = "--disable-asm"
 X264_DISABLE_ASM_powerpc = "${@bb.utils.contains("TUNE_FEATURES", "spe", "--disable-asm", "", d)}"
+X264_DISABLE_ASM_mipsarch = "${@bb.utils.contains("TUNE_FEATURES", "r6", "", "--disable-asm", d)}"
 
 EXTRA_OECONF = '--prefix=${prefix} \
                 --host=${HOST_SYS} \

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list