Skip to content

Commit

Permalink
Update to openssl 3.0.10 on Win & Mac
Browse files Browse the repository at this point in the history
See also eclipse-openj9/openj9#14900

Signed-off-by: Peter Shipton <[email protected]>
  • Loading branch information
pshipton committed Aug 23, 2023
1 parent b9facce commit bc14b7f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion sbin/prepareWorkspace.sh
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,12 @@ updateOpenj9Sources() {
if [ "${BUILD_CONFIG[BUILD_VARIANT]}" == "${BUILD_VARIANT_OPENJ9}" ]; then
cd "${BUILD_CONFIG[WORKSPACE_DIR]}/${BUILD_CONFIG[WORKING_DIR]}/${BUILD_CONFIG[OPENJDK_SOURCE_DIR]}" || return
# NOTE: fetched openssl will NOT be used in the RISC-V cross-compile situation
bash get_source.sh --openssl-version=1.1.1v
if [[ "${BUILD_CONFIG[OS_KERNEL_NAME]}" = *"cygwin"* ]] || [[ "${BUILD_CONFIG[OS_KERNEL_NAME]}" == "darwin" ]]; then
bash get_source.sh --openssl-version=3.0.10
else
# Continue using 1.1.1 until all platforms can build 3.0.10
bash get_source.sh --openssl-version=1.1.1v
fi
cd "${BUILD_CONFIG[WORKSPACE_DIR]}"
fi
}
Expand Down

0 comments on commit bc14b7f

Please sign in to comment.