blob: a92883516cf77760313cc4cda6c083762e1ac6e7 [file] [log] [blame]
Andrew Geisslerd688a012020-09-18 13:36:00 -05001From efd79bda1b85a5a4398a71e5ea2bc00ee4b0ea46 Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Tue, 15 Sep 2020 18:20:27 -0700
4Subject: [PATCH] stacktrace: Define ARCH_BITS for x86
5
6stacktrace_somap.cpp:92:33: error: 'ELFCLASSARCH_BITS' was not declared in this scope
7
8Upstream-Status: Pending
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11 src/mongo/util/stacktrace_somap.cpp | 2 +-
12 1 file changed, 1 insertion(+), 1 deletion(-)
13
14diff --git a/src/mongo/util/stacktrace_somap.cpp b/src/mongo/util/stacktrace_somap.cpp
15index f7ba66a142..2231948ce8 100644
16--- a/src/mongo/util/stacktrace_somap.cpp
17+++ b/src/mongo/util/stacktrace_somap.cpp
18@@ -83,7 +83,7 @@ void addUnameToSoMap(BSONObjBuilder* soMap) {
19 #define ARCH_BITS __ELF_NATIVE_CLASS
20 #elif defined(__x86_64__) || defined(__aarch64__)
21 #define ARCH_BITS 64
22-#elif defined(__arm__)
23+#elif defined(__i386__) || defined(__arm__)
24 #define ARCH_BITS 32
25 #else
26 #error Unknown target architecture.
27--
282.28.0
29