Signed-off-by: herengui <herengui@kylinsec.com.cn> (cherry picked from commit c1e0d2531366b473da77c1f4e26709aad89ea98a)
28 lines
806 B
Diff
28 lines
806 B
Diff
From ca912b682c6f20dffabc121974f2451272db5aaa Mon Sep 17 00:00:00 2001
|
|
From: yangchenguang <yangchenguang@kylinsec.com.cn>
|
|
Date: Tue, 30 May 2023 11:38:58 +0800
|
|
Subject: [PATCH] Add loongarch64 and sw_64 support
|
|
|
|
Signed-off-by: yangchenguang <yangchenguang@kylinsec.com.cn>
|
|
---
|
|
jemalloc/include/jemalloc/internal/quantum.h | 3 +++
|
|
1 file changed, 3 insertions(+)
|
|
|
|
diff --git a/jemalloc/include/jemalloc/internal/quantum.h b/jemalloc/include/jemalloc/internal/quantum.h
|
|
index 821086e..d6600af 100644
|
|
--- a/jemalloc/include/jemalloc/internal/quantum.h
|
|
+++ b/jemalloc/include/jemalloc/internal/quantum.h
|
|
@@ -30,6 +30,9 @@
|
|
# ifdef __hppa__
|
|
# define LG_QUANTUM 4
|
|
# endif
|
|
+# ifdef __loongarch__
|
|
+# define LG_QUANTUM 4
|
|
+# endif
|
|
# ifdef __m68k__
|
|
# define LG_QUANTUM 3
|
|
# endif
|
|
--
|
|
2.41.0
|
|
|