From 98f3cae41570caf5906d37245d7bfce90d60c447 Mon Sep 17 00:00:00 2001 From: r4sas Date: Fri, 28 Jan 2022 11:29:05 +0000 Subject: [PATCH] forward openssl build log to file Signed-off-by: r4sas --- app/jni/build_openssl.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/jni/build_openssl.sh b/app/jni/build_openssl.sh index 12cf9cb..ec00d7f 100755 --- a/app/jni/build_openssl.sh +++ b/app/jni/build_openssl.sh @@ -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 { -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}