You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@weex.apache.org by ky...@apache.org on 2019/07/04 04:23:57 UTC

[incubator-weex] branch release/0.26 updated: Update buildscript

This is an automated email from the ASF dual-hosted git repository.

kyork pushed a commit to branch release/0.26
in repository https://gitbox.apache.org/repos/asf/incubator-weex.git


The following commit(s) were added to refs/heads/release/0.26 by this push:
     new d702306  Update buildscript
d702306 is described below

commit d7023062c7cc17be27892da5dcaee83fcd680212
Author: YorkShen <sh...@gmail.com>
AuthorDate: Thu Jul 4 12:23:41 2019 +0800

    Update buildscript
---
 scripts/build_from_source.sh | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/scripts/build_from_source.sh b/scripts/build_from_source.sh
index ec80b1b..be0b4a0 100755
--- a/scripts/build_from_source.sh
+++ b/scripts/build_from_source.sh
@@ -54,18 +54,19 @@ then
     cp libWTF.so libJavaScriptCore.so ../android_sdk/libs/armeabi-v7a
     mkdir -p ../weex_core/Source/libs/armeabi-v7a
     cp libWTF.so libJavaScriptCore.so ../weex_core/Source/libs/armeabi-v7a
+    rm -rf build32 libWTF.so libJavaScriptCore.so
 
-    rm -rf build32
     sh build.jsc.sh -t arm64
     cp libWTF.so libJavaScriptCore.so ../android_sdk/libs/arm64-v8a
     mkdir -p ../weex_core/Source/libs/arm64-v8a
     cp libWTF.so libJavaScriptCore.so ../weex_core/Source/libs/arm64-v8a
+    rm -rf build64 libWTF.so libJavaScriptCore.so
 
-    rm -rf build64
     sh build.jsc.sh -t x86
     cp libWTF.so libJavaScriptCore.so ../android_sdk/libs/x86
     mkdir -p ../weex_core/Source/libs/x86
     cp libWTF.so libJavaScriptCore.so ../weex_core/Source/libs/x86
+    rm -rf build32 libWTF.so libJavaScriptCore.so
 
     cd ..