Skip to content

Commit de7326d

Browse files
committed
RHAIENG-948: fix(ppc): build failure due to missing openssl
add `libcurl-devel` to build dependencies for `ppc64le` and `s390x` in pyarrow and onnx builds ``` -- Configuring done (1.8s) -- Generating done (0.1s) CMake Error at cmake_modules/ThirdpartyToolchain.cmake:5282 (set_property): The link interface of target "AWS::aws-c-cal" contains: OpenSSL::Crypto but the target was not found. Possible reasons include: * There is a typo in the target name. * A find_package call is missing for an IMPORTED target. * An ALIAS target is missing. ```
1 parent c7fef13 commit de7326d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyter/datascience/ubi9-python-3.12/Dockerfile.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ if [ "$TARGETARCH" = "ppc64le" ] || [ "$TARGETARCH" = "s390x" ]; then
148148
cmake make gcc-c++ pybind11-devel wget
149149
# pyarrow -DARROW_S3=ON pulls in AWS C++ SDK
150150
# libcurl-devel is required to build AWS C++ SDK
151-
libcurl-devel
151+
libcurl-devel openssl-devel
152152
)
153153
dnf install -y "${packages[@]}"
154154
dnf clean all

jupyter/datascience/ubi9-python-3.12/Dockerfile.konflux.cpu

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ if [ "$TARGETARCH" = "ppc64le" ] || [ "$TARGETARCH" = "s390x" ]; then
150150
cmake make gcc-c++ pybind11-devel wget
151151
# pyarrow -DARROW_S3=ON pulls in AWS C++ SDK
152152
# libcurl-devel is required to build AWS C++ SDK
153-
libcurl-devel
153+
libcurl-devel openssl-devel
154154
)
155155
dnf install -y "${packages[@]}"
156156
dnf clean all

0 commit comments

Comments
 (0)