Build with different options

We need it to be built with engine support. In Android I'm only adding
no-shared. However, I see in https://github.com/Frugghi/iSSH2/blob/master/iSSH2-openssl.sh
that these extra flags are there. I'm not sure if libgit2 or libssh2 will need them. Lets see
This commit is contained in:
Vishesh Handa 2019-05-28 16:00:13 +02:00
parent 3d1d1e4ca0
commit 84f7f3387b

View file

@ -20,7 +20,7 @@ function build_for ()
export CROSS_TOP="${!CROSS_TOP_ENV}"
export CROSS_SDK="${!CROSS_SDK_ENV}"
./Configure $PLATFORM "-arch $ARCH -fembed-bitcode" no-asm no-ssl3 no-comp no-hw no-engine no-async --prefix=${TMP_DIR}/${ARCH} || exit 1
./Configure $PLATFORM "-arch $ARCH -fembed-bitcode" no-asm no-shared no-hw no-async --prefix=${TMP_DIR}/${ARCH} || exit 1
# problem of concurrent build; make -j8
make && make install_sw || exit 2
unset CROSS_TOP