aports/community/darktable/fix-has-attribute-musl.patch
prspkt 02fa44d630 community/darktable: upgrade to 3.8.0
- Enable on ppc64le.
 - Link against lua5.4.
 - Use the canonical APKBUILD cmake template.
2021-12-25 21:11:31 +00:00

14 lines
846 B
Diff
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Fixes: error: the call requires 'ifunc', which is not supported by this target
--- a/src/common/darktable.h
+++ b/src/common/darktable.h
@@ -127,7 +127,7 @@
/* Create cloned functions for various CPU SSE generations */
/* See for instructions https://hannes.hauswedell.net/post/2017/12/09/fmv/ */
/* TL;DR : use only on SIMD functions containing low-level paralellized/vectorized loops */
-#if __has_attribute(target_clones) && !defined(_WIN32) && !defined(NATIVE_ARCH)
+#if __has_attribute(target_clones) && !defined(_WIN32) && !defined(NATIVE_ARCH) && defined(__GLIBC__)
# if defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64)
#define __DT_CLONE_TARGETS__ __attribute__((target_clones("default", "sse2", "sse3", "sse4.1", "sse4.2", "popcnt", "avx", "avx2", "avx512f", "fma4")))
# elif defined(__PPC64__)