diff options
author | Changqing Li <changqing.li@windriver.com> | 2024-05-16 17:37:09 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-05-19 08:27:59 -0700 |
commit | 1573555fb83739c1777a0a818c5851998358fb76 (patch) | |
tree | 175827d2bacd067ebd581729fe8360fe2ea6530d /meta-python/recipes-devtools/python/python3-grpcio | |
parent | da03f5dadc0b3229bef905db2d8941bbdb1d2d97 (diff) | |
download | meta-openembedded-1573555fb83739c1777a0a818c5851998358fb76.tar.gz |
python3-grpcio: fix do_compile failure for qemuppc64/qemuppc
define proper macro for ppc/ppc64 to fix compile error
Signed-off-by: Changqing Li <changqing.li@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch b/meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch new file mode 100644 index 0000000000..0b512b1d00 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch | |||
@@ -0,0 +1,37 @@ | |||
1 | From b3bca013007a4a66703573d243e433f22e1e6684 Mon Sep 17 00:00:00 2001 | ||
2 | From: Changqing Li <changqing.li@windriver.com> | ||
3 | Date: Wed, 15 May 2024 16:55:09 +0800 | ||
4 | Subject: [PATCH] target.h: define proper macro for ppc/ppc64 | ||
5 | |||
6 | Fix error: | ||
7 | third_party/boringssl-with-bazel/src/include/openssl/target.h:74:2: error: #error "Unknown target CPU" | ||
8 | third_party/boringssl-with-bazel/src/include/openssl/bn.h:172:2: error: #error "Must define either OPENSSL_32_BIT or OPENSSL_64_BIT" | ||
9 | third_party/boringssl-with-bazel/src/include/openssl/bn.h:230:44: error: 'BN_ULONG' has not been declared | ||
10 | |||
11 | BN_ULONG will be defined after set proper OPENSSL_32_BIT or OPENSSL_64_BIT | ||
12 | |||
13 | Upstream-Status: Pending | ||
14 | |||
15 | Signed-off-by: Changqing Li <changqing.li@windriver.com> | ||
16 | --- | ||
17 | third_party/boringssl-with-bazel/src/include/openssl/target.h | 4 ++++ | ||
18 | 1 file changed, 4 insertions(+) | ||
19 | |||
20 | diff --git a/third_party/boringssl-with-bazel/src/include/openssl/target.h b/third_party/boringssl-with-bazel/src/include/openssl/target.h | ||
21 | index 29b1dc6..d779813 100644 | ||
22 | --- a/third_party/boringssl-with-bazel/src/include/openssl/target.h | ||
23 | +++ b/third_party/boringssl-with-bazel/src/include/openssl/target.h | ||
24 | @@ -54,6 +54,10 @@ | ||
25 | #define OPENSSL_32_BIT | ||
26 | #elif defined(__myriad2__) | ||
27 | #define OPENSSL_32_BIT | ||
28 | +#elif defined(__PPC64__) | ||
29 | +#define OPENSSL_64_BIT | ||
30 | +#elif defined(__PPC__) | ||
31 | +#define OPENSSL_32_BIT | ||
32 | #else | ||
33 | // The list above enumerates the platforms that BoringSSL supports. For these | ||
34 | // platforms we keep a reasonable bar of not breaking them: automated test | ||
35 | -- | ||
36 | 2.25.1 | ||
37 | |||