diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-10-06 18:29:17 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-10-09 12:02:41 +0100 |
commit | ea1204c6d9a02f0e38cf616e89d46530908972bb (patch) | |
tree | c2f0d7029cdf578f2309d5871cc7cd59080428ec | |
parent | 4015f3279aaced1c5d9ae8a6e666c9fba42558df (diff) | |
download | openembedded-core-ea1204c6d9a02f0e38cf616e89d46530908972bb.tar.gz openembedded-core-ea1204c6d9a02f0e38cf616e89d46530908972bb.tar.bz2 openembedded-core-ea1204c6d9a02f0e38cf616e89d46530908972bb.zip |
x264: Disable asm on musl/x86
Fixes
WARNING: x264-r2854+gitAUTOINC+e9a5903edf-r0 do_package_qa: QA Issue: ELF binary '/mnt/a/yoe/build/tmp/work/i586-yoe-linux-musl/x264/r2854+gitAUTOINC+e9a5903edf-r0/packages-split/x264/usr/lib/libx264.so.152'
has relocations in .text [textrel]
WARNING: x264-r2854+gitAUTOINC+e9a5903edf-r0 do_package_qa: QA Issue: ELF binary '/mnt/a/yoe/build/tmp/work/i586-yoe-linux-musl/x264/r2854+gitAUTOINC+e9a5903edf-r0/packages-split/x264-bin/usr/bin/x264'
has relocations in .text [textrel]
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-multimedia/x264/x264_git.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-multimedia/x264/x264_git.bb b/meta/recipes-multimedia/x264/x264_git.bb index c445d15e69..4174cb2819 100644 --- a/meta/recipes-multimedia/x264/x264_git.bb +++ b/meta/recipes-multimedia/x264/x264_git.bb @@ -23,6 +23,7 @@ S = "${WORKDIR}/git" inherit lib_package pkgconfig perlnative X264_DISABLE_ASM = "" +X264_DISABLE_ASM_x86_libc-musl = "--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)}" |