- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
26 lines
730 B
Diff
26 lines
730 B
Diff
From 3ef37c63f03ad6f2af407de350486fdd25e9132a Mon Sep 17 00:00:00 2001
|
|
From: Khem Raj <raj.khem@gmail.com>
|
|
Date: Mon, 13 Jan 2020 15:23:47 -0800
|
|
Subject: [PATCH] meson misdetects 64bit atomics on mips/clang
|
|
|
|
Upstream-Status: Pending
|
|
Signed-off-by: Khem Raj <raj.khem@gmail.com>
|
|
|
|
---
|
|
src/util/u_atomic.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/util/u_atomic.c b/src/util/u_atomic.c
|
|
index 5a5eab4..e499516 100644
|
|
--- a/src/util/u_atomic.c
|
|
+++ b/src/util/u_atomic.c
|
|
@@ -21,7 +21,7 @@
|
|
* IN THE SOFTWARE.
|
|
*/
|
|
|
|
-#if defined(MISSING_64BIT_ATOMICS) && defined(HAVE_PTHREAD)
|
|
+#if !defined(__clang__) && defined(MISSING_64BIT_ATOMICS) && defined(HAVE_PTHREAD)
|
|
|
|
#include <stdint.h>
|
|
#include <pthread.h>
|