diff options
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch | 34 |
1 files changed, 0 insertions, 34 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 deleted file mode 100644 index 39f9fafba7..0000000000 --- a/meta-python/recipes-devtools/python/python3-grpcio/0001-target.h-define-proper-macro-for-ppc-ppc64.patch +++ /dev/null | |||
@@ -1,34 +0,0 @@ | |||
1 | From e2c78c555ab3d9509c4ade511e2f711eb7188626 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 2760f52..e743402 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 | ||