summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/jemalloc/files
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2022-01-14 09:54:57 -0800
committerKhem Raj <raj.khem@gmail.com>2022-01-18 09:01:51 -0800
commitd49282245ce0ed88fdf3b319588033093f07bd3c (patch)
tree708699bd410df006c54357062e6390caaa183040 /meta-oe/recipes-devtools/jemalloc/files
parent18448441868b2db1c959b5993253952e084d4dea (diff)
downloadmeta-openembedded-d49282245ce0ed88fdf3b319588033093f07bd3c.tar.gz
jemalloc: Fix build with glibc 2.35+clang
Compiler crashes when using glibc 2.35, it should be fixed in clang but until then workaround it here. Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-devtools/jemalloc/files')
-rw-r--r--meta-oe/recipes-devtools/jemalloc/files/0001-test-Disable-optimization-with-clang-for-aligned_all.patch33
1 files changed, 33 insertions, 0 deletions
diff --git a/meta-oe/recipes-devtools/jemalloc/files/0001-test-Disable-optimization-with-clang-for-aligned_all.patch b/meta-oe/recipes-devtools/jemalloc/files/0001-test-Disable-optimization-with-clang-for-aligned_all.patch
new file mode 100644
index 0000000000..570202e800
--- /dev/null
+++ b/meta-oe/recipes-devtools/jemalloc/files/0001-test-Disable-optimization-with-clang-for-aligned_all.patch
@@ -0,0 +1,33 @@
1From 3fe67deb9fcf0ae3c2ff31a9eccb6a0a9af33b9c Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 14 Jan 2022 09:47:03 -0800
4Subject: [PATCH] test: Disable optimization with clang for aligned_alloc.c
5
6Clang crashes when using glibc 2.35, it works ok with older glibc or
7musl, so its very specific problem. Its reported here
8
9https://github.com/llvm/llvm-project/issues/52765
10
11Until it is fixed, workaround the build failure
12
13Upstream-Status: Inappropriate [Workaround]
14Signed-off-by: Khem Raj <raj.khem@gmail.com>
15---
16 test/integration/aligned_alloc.c | 2 ++
17 1 file changed, 2 insertions(+)
18
19diff --git a/test/integration/aligned_alloc.c b/test/integration/aligned_alloc.c
20index 4375b172..6513bdd9 100644
21--- a/test/integration/aligned_alloc.c
22+++ b/test/integration/aligned_alloc.c
23@@ -1,5 +1,7 @@
24 #include "test/jemalloc_test.h"
25
26+#pragma clang optimize off
27+
28 #define MAXALIGN (((size_t)1) << 23)
29
30 /*
31--
322.34.1
33