Skip to content

Commit

Permalink
Merge pull request #68 from andybrucenet/master
Browse files Browse the repository at this point in the history
Inhibit versioning of generated .so files as
  • Loading branch information
leenjewel authored Jul 25, 2022
2 parents 5843a39 + 7aa52cb commit ccd02ba
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tools/build-android-openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,11 @@ function configure_make() {
log_info "make $ABI start..."

make clean >"${OUTPUT_ROOT}/log/${ABI}.log"
if make -j$(get_cpu_count) >>"${OUTPUT_ROOT}/log/${ABI}.log" 2>&1; then
make install_sw >>"${OUTPUT_ROOT}/log/${ABI}.log" 2>&1
# ABr: do *not* generate soname; see https://stackoverflow.com/a/33869277
make SHLIB_EXT='.so' CALC_VERSIONS="SHLIB_COMPAT=; SHLIB_SOVER=" MAKE="make -e" all >>"${OUTPUT_ROOT}/log/${ABI}.log" 2>&1
the_rc=$?
if [ $the_rc -eq 0 ] ; then
make SHLIB_EXT='.so' install_sw >>"${OUTPUT_ROOT}/log/${ABI}.log" 2>&1
make install_ssldirs >>"${OUTPUT_ROOT}/log/${ABI}.log" 2>&1
fi

Expand Down

0 comments on commit ccd02ba

Please sign in to comment.