mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 05:23:39 +08:00
701e6f34e0
SIMD needs VSX with little endian to avoid the following build failure: In file included from /nvmedata/autobuild/instance-12/output-1/build/jpeg-turbo-2.1.3/simd/powerpc/jccolor-altivec.c:25: /nvmedata/autobuild/instance-12/output-1/build/jpeg-turbo-2.1.3/simd/powerpc/jccolext-altivec.c: In function 'jsimd_rgb_ycc_convert_altivec': /nvmedata/autobuild/instance-12/output-1/build/jpeg-turbo-2.1.3/simd/powerpc/jsimd_altivec.h:93:26: warning: implicit declaration of function 'vec_vsx_ld'; did you mean 'vec_vsl'? [-Wimplicit-function-declaration] 93 | #define VEC_LD(a, b) vec_vsx_ld(a, b) | ^~~~~~~~~~ Fixes: - http://autobuild.buildroot.org/results/be6d5ad0cee4ee19eb25e595d44555a1af6e073b Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
58 lines
1.4 KiB
Plaintext
58 lines
1.4 KiB
Plaintext
# jpeg-turbo has simd support for some architectures
|
|
config BR2_PACKAGE_JPEG_SIMD_SUPPORT
|
|
bool
|
|
default y if BR2_X86_CPU_HAS_MMX
|
|
default y if BR2_ARM_CPU_HAS_NEON
|
|
default y if BR2_POWERPC_CPU_HAS_ALTIVEC && !BR2_powerpc64le
|
|
default y if BR2_POWERPC_CPU_HAS_VSX && BR2_powerpc64le
|
|
default y if BR2_aarch64 || BR2_aarch64_be
|
|
|
|
config BR2_PACKAGE_JPEG
|
|
bool "jpeg support"
|
|
help
|
|
Select the desired JPEG library provider.
|
|
|
|
if BR2_PACKAGE_JPEG
|
|
|
|
choice
|
|
prompt "jpeg variant"
|
|
default BR2_PACKAGE_JPEG_TURBO if BR2_PACKAGE_JPEG_SIMD_SUPPORT
|
|
help
|
|
Select the normal libjpeg or libjpeg-turbo.
|
|
|
|
config BR2_PACKAGE_LIBJPEG
|
|
bool "jpeg"
|
|
select BR2_PACKAGE_HAS_JPEG
|
|
help
|
|
The ubiquitous C library for manipulating JPEG images.
|
|
|
|
http://www.ijg.org/
|
|
|
|
config BR2_PACKAGE_JPEG_TURBO
|
|
bool "jpeg-turbo"
|
|
select BR2_PACKAGE_HAS_JPEG
|
|
help
|
|
Libjpeg-turbo is a derivative of libjpeg that uses SIMD
|
|
instructions (MMX, SSE2, NEON) to accelerate baseline JPEG
|
|
compression and decompression on x86, x86-64, and ARM
|
|
systems.
|
|
|
|
http://www.libjpeg-turbo.org
|
|
|
|
# libjpeg from br2-external trees, if any
|
|
source "$BR2_BASE_DIR/.br2-external.in.jpeg"
|
|
|
|
endchoice
|
|
|
|
source "package/jpeg-turbo/Config.in.options"
|
|
|
|
config BR2_PACKAGE_HAS_JPEG
|
|
bool
|
|
|
|
config BR2_PACKAGE_PROVIDES_JPEG
|
|
string
|
|
default "libjpeg" if BR2_PACKAGE_LIBJPEG
|
|
default "jpeg-turbo" if BR2_PACKAGE_JPEG_TURBO
|
|
|
|
endif
|