diff options
| author | Tilka <tilkax@gmail.com> | 2024-10-12 10:11:33 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-10-12 10:11:33 +0100 |
| commit | 35ec2e97a8ea90730cb33eceec701f81597f98f7 (patch) | |
| tree | 9f85b384173e82391f23203ad2313fa26bb5b34b /Source | |
| parent | c5ce90b78676f7847be264215847e4b7bb7dcce6 (diff) | |
| parent | 14a802b58bd6ab5af03b2b855c86c35e6d6e87bb (diff) | |
Merge pull request #13079 from JosJuice/android-16k
Android: Add 16 KiB page size support
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Android/app/build.gradle.kts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/Source/Android/app/build.gradle.kts b/Source/Android/app/build.gradle.kts index af48026a86..0ed29fde4b 100644 --- a/Source/Android/app/build.gradle.kts +++ b/Source/Android/app/build.gradle.kts @@ -101,8 +101,12 @@ android { defaultConfig { externalNativeBuild { cmake { - arguments("-DANDROID_STL=c++_static", "-DCMAKE_BUILD_TYPE=RelWithDebInfo") - // , "-DENABLE_GENERIC=ON" + arguments( + "-DANDROID_STL=c++_static", + "-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON", + "-DCMAKE_BUILD_TYPE=RelWithDebInfo" + // , "-DENABLE_GENERIC=ON" + ) abiFilters("arm64-v8a", "x86_64") //, "armeabi-v7a", "x86" // Uncomment the line below if you don't want to build the C++ unit tests |
