Browse Source

forward openssl build log to file

Signed-off-by: r4sas <r4sas@i2pmail.org>
pull/35/head
R4SAS 2 years ago
parent
commit
98f3cae415
Signed by: r4sas
GPG Key ID: 66F6C87B98EBCFE2
  1. 5
      app/jni/build_openssl.sh

5
app/jni/build_openssl.sh

@ -4,6 +4,7 @@ set -e @@ -4,6 +4,7 @@ set -e
function build_one {
mkdir -p out/${CPU}
mkdir output
echo "Configuring OpenSSL for ${CPU}..."
./Configure \
@ -15,9 +16,9 @@ function build_one { @@ -15,9 +16,9 @@ function build_one {
-Wno-macro-redefined
echo "Building OpenSSL for ${CPU}..."
make -j $(nproc)
make -j $(nproc) > output/build.log
make install_sw
make install_sw >> output/build.log
cp output/lib/*.a out/${CPU}

Loading…
Cancel
Save