Combine poky (Yocto scarthgap), meta-openembedded (scarthgap), and meta-openwrt into a single repository. Components: - poky/ Yocto core framework (BitBake + OE-Core) - meta-openembedded/ Community layers (meta-oe, meta-python, meta-networking) - meta-openwrt/ OpenWrt customization layer - setup-env.sh One-click build environment setup - README.md Project documentation
25 lines
731 B
Diff
25 lines
731 B
Diff
From 02cc21800fe29f566add525e63f619c0536d6e7b 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>
|