diff --git a/build-ndk.sh b/build-ndk.sh
index 8e79571b..2d6809b9 100755
--- a/build-ndk.sh
+++ b/build-ndk.sh
@@ -87,7 +87,7 @@ if test -z $1; then
 
   # According to 1.45.0 changelog in https://github.com/rust-lang/rust/blob/master/RELEASES.md,
   # "The recommended way to control LTO is with Cargo profiles, either in Cargo.toml or .cargo/config, or by setting CARGO_PROFILE_<name>_LTO in the environment."
-  export CARGO_PROFILE_RELEASE_LTO=on
+  #export CARGO_PROFILE_RELEASE_LTO=on
   RELEASE="release"
   RELEASEFLAG="--release"
 else
@@ -98,10 +98,11 @@ else
 fi
 
 if test -z "$VERBOSE"; then
-  FEATURES_FLAG="--features pluggable-transports"
+  #FEATURES_FLAG="--features pluggable-transports"
+  echo ""
 else
   echo "VERBOSE is set, building with more logging. DO NOT UPLOAD THE APK ANYWHERE."
-  FEATURES_FLAG="--features pluggable-transports,verbose"
+  #FEATURES_FLAG="--features pluggable-transports,verbose"
 fi
 
 # Lint checking
@@ -115,7 +116,7 @@ if test -z $1 || test $1 = armeabi-v7a; then
 fi
 
 if test -z $1 || test $1 = arm64-v8a; then
-    echo "-- cross compiling to aarch64-linux-android (arm64) --"
+    echo "-- cross compiling to aarch64-linux-android (arm64) with $RELEASEFLAG and $FEATURES_FLAG--"
     if [[ ! -f ${BUILD_DIR}/arm64-v8a ]]; then mkdir -p $BUILD_DIR/arm64-v8a; fi
     cargo ndk --target aarch64-linux-android build -p onionmasq-mobile $RELEASEFLAG $FEATURES_FLAG --lib
     cp $CARGO_TARGET_DIR/aarch64-linux-android/$RELEASE/libonionmasq_mobile.so $BUILD_DIR/arm64-v8a
