diff options
author | Fabrice Fontaine <fontaine.fabrice@gmail.com> | 2018-10-01 22:57:39 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2018-10-03 09:32:06 +0200 |
commit | 03bfbc5ab26c9aed0c0cfce55341a1d1f05deca3 (patch) | |
tree | 3da8bdf2e58f2f03382bd91572c5e803b577c554 | |
parent | 6b8f9ff06fe7c765fb6deb212b93300bab957a36 (diff) | |
download | buildroot-03bfbc5ab26c9aed0c0cfce55341a1d1f05deca3.tar.gz buildroot-03bfbc5ab26c9aed0c0cfce55341a1d1f05deca3.zip |
x265: disable parallel build
It seems package has a parallel build issue on ARM cortex A8 or A9 since
at least version 2.5:
[ 94%] Linking CXX shared library libx265.so
ipfilter8.S.o: file not recognized: File truncated
collect2: error: ld returned 1 exit status
CMakeFiles/x265-shared.dir/build.make:221: recipe for target 'libx265.so.160' failed
Fixes:
- http://autobuild.buildroot.org/results/f6ea88324a8f9ac8ee780ddd71ec61f922e20210
- http://autobuild.buildroot.org/results/3bd91a5694936650ce936a408ddd50338f65f8b0
Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/x265/x265.mk | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/package/x265/x265.mk b/package/x265/x265.mk index 0ad27ee006..fe317d09d0 100644 --- a/package/x265/x265.mk +++ b/package/x265/x265.mk @@ -11,6 +11,7 @@ X265_LICENSE = GPL-2.0+ X265_LICENSE_FILES = COPYING X265_SUBDIR = source X265_INSTALL_STAGING = YES +X265_MAKE = $(MAKE1) ifeq ($(BR2_i386)$(BR2_x86_64),y) X265_DEPENDENCIES += host-nasm |