Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

[Dependency Update] Upgrade openssl to 1.1.1b #14837

Merged
merged 4 commits into from
May 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/dependencies/openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

# This script builds the static library of openssl that can be used as dependency of mxnet.
set -ex
OPENSSL_VERSION=1.0.2l
OPENSSL_VERSION=1.1.1b
if [[ ! -f $DEPS_PATH/lib/libssl.a ]] || [[ ! -f $DEPS_PATH/lib/libcrypto.a ]]; then
# download and build openssl
>&2 echo "Building openssl..."
Expand Down
3 changes: 3 additions & 0 deletions tools/staticbuild/build_lib.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ if [[ $VARIANT == *mkl ]]; then
MKLDNN_LIBFILE='libmkldnn.0.dylib'
fi
$MAKE DEPS_PATH=$DEPS_PATH mkldnn
if [ ! -d lib ]; then
mkdir lib
fi
cp 3rdparty/mkldnn/build/install/lib/$IOMP_LIBFILE lib
cp 3rdparty/mkldnn/build/install/lib/$MKLML_LIBFILE lib
cp 3rdparty/mkldnn/build/install/lib/$MKLDNN_LIBFILE lib
Expand Down