Skip to content
This repository was archived by the owner on Mar 25, 2019. It is now read-only.

Commit 888dd23

Browse files
author
ericwlange
committed
changed mips to use api 19, fix issues below api 18
1 parent 838376d commit 888dd23

4 files changed

Lines changed: 4 additions & 6 deletions

File tree

examples/AndroidJSCoreExample/.idea/misc.xml

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ ANDROID_APIS = {
6363
'arm64-v8a' : '19',
6464
'x86' : '19',
6565
'x86_64' : '21',
66-
'mips' : '21',
66+
'mips' : '19',
6767
'mips64' : '21'
6868
}
6969

scripts/build_JavaScriptCore.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,14 @@
1111
# set JNI_LIBS
1212
# set PROJECT_ROOT
1313
# set EXTRA_FLAGS
14+
# set ANDROID_API
1415
set -e
1516

1617
mkdir -p ${ABI}/webkit
1718
cd ${ABI}/webkit
1819

1920
$CMAKE -DCMAKE_TOOLCHAIN_FILE=${PROJECT_ROOT}/scripts/android.toolchain.cmake \
20-
-DANDROID_ABI=${ABI} \
21+
-DANDROID_ABI=${ABI} -DANDROID_API=${ANDROID_API} \
2122
-DCMAKE_BUILD_TYPE=MinSizeRel \
2223
-DANDROID_STANDALONE_TOOLCHAIN=${PREBUILT} \
2324
-DANDROID_USE_STLPORT=1 -DENABLE_WEBKIT=0 -ENABLE_WEBCORE=0 -DENABLE_TOOLS=0 \

webkit

0 commit comments

Comments
 (0)