From e8b5feee87be5157e93665011b3c350f6996dfcc Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Wed, 16 Nov 2022 23:29:08 +0100 Subject: [PATCH] package/rsync: fix configure options Rename configure options to avoid the following build failure raised since bump to version 3.2.5 in commit ae2807821d897c16141d003f646475fee9e77cba: ./simd-checksum-x86_64.cpp: In function 'uint32_t get_checksum1_cpp(char*, int32_t)': ./simd-checksum-x86_64.cpp:89:52: error: multiversioning needs 'ifunc' which is not supported on this target 89 | __attribute__ ((target("default"))) MVSTATIC int32 get_checksum1_avx2_64(schar* buf, int32 len, int32 i, uint32* ps1, uint32* ps2) { return i; } | ^~~~~~~~~~~~~~~~~~~~~ ./simd-checksum-x86_64.cpp:480:1: error: use of multiversioned function without a default 480 | } | ^ If you can't fix the issue, re-run ./configure with --disable-roll-simd. Fixes: - http://autobuild.buildroot.org/results/069da8e585da2e51bfd4f475cc12b9a134954b08 Signed-off-by: Fabrice Fontaine Signed-off-by: Peter Korsgaard --- package/rsync/rsync.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/rsync/rsync.mk b/package/rsync/rsync.mk index 7ff7ca6eef..8c7ad462ac 100644 --- a/package/rsync/rsync.mk +++ b/package/rsync/rsync.mk @@ -17,12 +17,12 @@ RSYNC_CONF_ENV = rsync_cv_HAVE_C99_VSNPRINTF=yes RSYNC_CONF_OPTS = \ --with-included-zlib=no \ --with-included-popt=no \ - --disable-simd \ + --disable-roll-simd \ --disable-openssl \ --disable-xxhash \ --disable-zstd \ --disable-lz4 \ - --disable-asm + --disable-md5-asm ifeq ($(BR2_PACKAGE_ACL),y) RSYNC_DEPENDENCIES += acl