darktable: update to 3.6.0.
This commit is contained in:
parent
276aa57ce3
commit
0819324900
|
@ -0,0 +1,28 @@
|
|||
From d61f3f153f8db2c991c09a3d2bd5ac9af69ce614 Mon Sep 17 00:00:00 2001
|
||||
From: lemmi <lemmi@nerd2nerd.org>
|
||||
Date: Mon, 5 Jul 2021 02:31:17 +0200
|
||||
Subject: [PATCH] define target_clones attribute only for glibc
|
||||
|
||||
---
|
||||
src/common/darktable.h | 4 ++--
|
||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/src/common/darktable.h b/src/common/darktable.h
|
||||
index 3267cfed3..03f17f0ee 100644
|
||||
--- a/src/common/darktable.h
|
||||
+++ b/src/common/darktable.h
|
||||
@@ -126,9 +126,9 @@ typedef unsigned int u_int;
|
||||
/* 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(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64))
|
||||
+#if __has_attribute(target_clones) && !defined(_WIN32) && (defined(__amd64__) || defined(__amd64) || defined(__x86_64__) || defined(__x86_64)) && defined(__GLIBC__)
|
||||
#define __DT_CLONE_TARGETS__ __attribute__((target_clones("default", "sse2", "sse3", "sse4.1", "sse4.2", "popcnt", "avx", "avx2", "avx512f", "fma4")))
|
||||
-#elif __has_attribute(target_clones) && !defined(_WIN32) && defined(__PPC64__)
|
||||
+#elif __has_attribute(target_clones) && !defined(_WIN32) && defined(__PPC64__) && defined(__GLIBC__)
|
||||
/* __PPC64__ is the only macro tested for in is_supported_platform.h, other macros would fail there anyway. */
|
||||
#define __DT_CLONE_TARGETS__ __attribute__((target_clones("default","cpu=power9")))
|
||||
#else
|
||||
--
|
||||
2.32.0
|
||||
|
|
@ -1,25 +0,0 @@
|
|||
From 17a2b728e834ae046d6ba4a9e37868f2476be3ab Mon Sep 17 00:00:00 2001
|
||||
From: lemmi <lemmi@nerd2nerd.org>
|
||||
Date: Sat, 18 Apr 2020 09:24:45 +0200
|
||||
Subject: [PATCH] only use target_clones with glibc
|
||||
|
||||
---
|
||||
src/common/darktable.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git src/common/darktable.h src/common/darktable.h
|
||||
index b3ad929..ae871a0 100644
|
||||
--- a/src/common/darktable.h
|
||||
+++ b/src/common/darktable.h
|
||||
@@ -102,7 +102,7 @@ typedef unsigned int u_int;
|
||||
/* 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(__SSE__)
|
||||
+#if __has_attribute(target_clones) && !defined(_WIN32) && defined(__SSE__) && defined(__GLIBC__)
|
||||
#define __DT_CLONE_TARGETS__ __attribute__((target_clones("default", "sse2", "sse3", "sse4.1", "sse4.2", "popcnt", "avx", "avx2", "avx512f", "fma4")))
|
||||
#else
|
||||
#define __DT_CLONE_TARGETS__
|
||||
--
|
||||
2.26.1
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
# Template file for 'darktable'
|
||||
pkgname=darktable
|
||||
version=3.4.1
|
||||
version=3.6.0
|
||||
revision=1
|
||||
# upstream only supports these archs:
|
||||
archs="x86_64* aarch64* ppc64le*"
|
||||
|
@ -22,7 +22,7 @@ license="GPL-3.0-or-later"
|
|||
homepage="http://www.darktable.org/"
|
||||
changelog="https://github.com/darktable-org/darktable/releases"
|
||||
distfiles="https://github.com/darktable-org/darktable/releases/download/release-${version}/darktable-${version}.tar.xz"
|
||||
checksum=7fc3f851da9bcd7c5053ecd09f21aa3eb6103be98a6c58f52010b6f22174941e
|
||||
checksum=86bcd0184af38b93c3688dffd3d5c19cc65f268ecf9358d649fa11fe26c70a39
|
||||
|
||||
build_options="gmic"
|
||||
|
||||
|
|
Loading…
Reference in New Issue