1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
From eac87cf0c41ef6d2190cd88cd9379a288edba1fa Mon Sep 17 00:00:00 2001
From: Pascal Obry <pascal@obry.net>
Date: Fri, 27 Jun 2025 08:14:30 +0200
Subject: [PATCH] Fix compilation when OpenMP is disabled.
Fixes #19006.
---
src/common/darktable.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/src/common/darktable.c b/src/common/darktable.c
index 11f86b0330a8..e5feaf63eddd 100644
--- src/common/darktable.c
+++ b/src/common/darktable.c
@@ -1193,10 +1193,13 @@ int dt_init(int argc, char *argv[], const gboolean init_gui, const gboolean load
if(desired > possible)
dt_print(DT_DEBUG_ALWAYS,
"[dt_init --threads] requested %d ompthreads restricted to %d",
- desired, possible);
+ desired, possible);
+#ifdef _OPENMP
dt_print(DT_DEBUG_ALWAYS,
"[dt_init --threads] using %d threads of %d for openmp parallel sections %s",
- darktable.num_openmp_threads, (int)dt_get_num_procs(), omp_get_dynamic() ? "(dynamic)" : "(static)");
+ darktable.num_openmp_threads, (int)dt_get_num_procs(),
+ omp_get_dynamic() ? "(dynamic)" : "(static)");
+#endif
k++;
argv[k-1] = NULL;
argv[k] = NULL;
|