Skip to content

Commit 6483e11

Browse files
committed
feat: support 16KB page size
1 parent d5df118 commit 6483e11

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

app/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ plugins {
44

55
android {
66
namespace 'com.whl.quickjs.wrapper.sample'
7-
compileSdk 34
7+
compileSdk 35
88

99
defaultConfig {
1010
applicationId "com.whl.quickjs.wrapper.sample"
1111
minSdkVersion 21
12-
targetSdk 34
12+
targetSdk 35
1313
versionCode 1
1414
versionName "1.0"
1515

wrapper-android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44

55
android {
66
namespace 'com.whl.quickjs.android'
7-
compileSdk 34
7+
compileSdk 35
88

99
defaultConfig {
1010
minSdkVersion 21
11-
targetSdk 34
11+
targetSdk 35
1212
versionCode 1
1313
versionName "1.0"
1414

wrapper-android/src/main/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ find_library( # Sets the name of the path variable.
4141

4242
target_link_libraries( # Specifies the target library.
4343
quickjs-android-wrapper
44-
44+
"-Wl,-z,max-page-size=16384"
4545
# Links the target library to the log library
4646
# included in the NDK.
47-
${log-lib} )
47+
${log-lib})

0 commit comments

Comments
 (0)