Skip to content

Commit

Permalink
[Dependency Update] Upgrade openssl to 1.1.1b (apache#14837)
Browse files Browse the repository at this point in the history
* upgrade openssl to 1.1.0k

* fix the wrong version

* upgrade to the latest version

* avoid lib to be treated as file instead of folder
  • Loading branch information
stu1130 authored and Rohit Kumar Srivastava committed May 14, 2019
1 parent 94fd839 commit c67a1ec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
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

0 comments on commit c67a1ec

Please sign in to comment.