88d2135a7a
Fix the following build failure without NEON probably raised since bump to version 1.9.9-b1 in commit1f7b12a0b4
andec02ecf104
: In file included from /home/autobuild/autobuild/instance-4/output-1/build/zlib-ng-2.0.6/arch/arm/adler32_neon.c:11: /home/autobuild/autobuild/instance-4/output-1/host/lib/gcc/arm-buildroot-linux-uclibcgnueabi/10.3.0/include/arm_neon.h:31:2: error: #error "NEON intrinsics not available with the soft-float ABI. Please use -mfloat-abi=softfp or -mfloat-abi=hard" 31 | #error "NEON intrinsics not available with the soft-float ABI. Please use -mfloat-abi=softfp or -mfloat-abi=hard" | ^~~~~ Fixes: - http://autobuild.buildroot.org/results/8260762632cde9eb5bc2154084680b5bec034aa6 Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
39 lines
916 B
Makefile
39 lines
916 B
Makefile
################################################################################
|
|
#
|
|
# zlib-ng
|
|
#
|
|
################################################################################
|
|
|
|
ZLIB_NG_VERSION = 2.0.6
|
|
ZLIB_NG_SITE = $(call github,zlib-ng,zlib-ng,$(ZLIB_NG_VERSION))
|
|
ZLIB_NG_LICENSE = Zlib
|
|
ZLIB_NG_LICENSE_FILES = LICENSE.md
|
|
ZLIB_NG_INSTALL_STAGING = YES
|
|
ZLIB_NG_PROVIDES = zlib
|
|
|
|
# Build with zlib compatible API, gzFile support and optimizations on
|
|
ZLIB_NG_CONF_OPTS += \
|
|
-DWITH_GZFILEOP=1 \
|
|
-DWITH_OPTIM=1 \
|
|
-DZLIB_COMPAT=1 \
|
|
-DZLIB_ENABLE_TESTS=OFF
|
|
|
|
# Enable ACLE on ARM
|
|
ifeq ($(BR2_arm),y)
|
|
ZLIB_NG_CONF_OPTS += -DWITH_ACLE=1
|
|
endif
|
|
|
|
ifeq ($(BR2_ARM_CPU_HAS_NEON)$(BR2_aarch64),y)
|
|
ZLIB_NG_CONF_OPTS += -DWITH_NEON=ON
|
|
else
|
|
ZLIB_NG_CONF_OPTS += -DWITH_NEON=OFF
|
|
endif
|
|
|
|
ifeq ($(BR2_powerpc_power8),y)
|
|
ZLIB_NG_CONF_OPTS += -DWITH_POWER8=ON
|
|
else
|
|
ZLIB_NG_CONF_OPTS += -DWITH_POWER8=OFF
|
|
endif
|
|
|
|
$(eval $(cmake-package))
|