Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
az committed Jun 2, 2020
1 parent 8a43955 commit 6927ea6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion script/_common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,6 @@ function common_build_make() {
shift
for make_param in $*; do
echo "[info][make_${make_param}_start]" >>"${library_arch_path}/log/output.log"
make $make_param >>"${library_arch_path}/log/output.log" 2>&1 || common_die "make $make_commond error!"
make $make_param >>"${library_arch_path}/log/output.log" 2>&1 || common_die "make $make_param error!"
done
}
6 changes: 3 additions & 3 deletions script/android-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ export ANDROID_TRIPLES=("arm-linux-androideabi" "aarch64-linux-android" "i686-li
export ANDROID_API=23

# for test
# ANDROID_ARCHS=("arm64-v8a")
# ANDROID_TRIPLES=("aarch64-linux-android")
# ANDROID_API=23
ANDROID_ARCHS=("armeabi-v7a")
ANDROID_TRIPLES=("arm-linux-androideabi")
ANDROID_API=23

echo "###############################################################################" >/dev/null
echo "#### Function Partition #####" >/dev/null
Expand Down
2 changes: 1 addition & 1 deletion script/android-protobuf.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ function android_protobuf_build_config_make() {

elif [[ "${library_arch}" == "armeabi-v7a" ]]; then

./configure --host=$(android_get_build_host "${library_arch}") --prefix="${library_arch_path}" --with-protoc=protobuf_command >"${library_arch_path}/log/output.log" 2>&1 || common_die "configure error!"
./configure --host=$(android_get_build_host "${library_arch}") --prefix="${library_arch_path}" --disable-shared --with-protoc=protobuf_command >"${library_arch_path}/log/output.log" 2>&1 || common_die "configure error!"

elif [[ "${library_arch}" == "arm64-v8a" ]]; then

Expand Down

0 comments on commit 6927ea6

Please sign in to comment.