Skip to content

Commit

Permalink
Enable 16k page size support
Browse files Browse the repository at this point in the history
  • Loading branch information
yujincheng08 committed Jun 2, 2024
1 parent 2c3045b commit a28c22e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,11 @@ cmaker {
default {
targets("biliroaming")
abiFilters("armeabi-v7a", "arm64-v8a", "x86")
arguments += "-DANDROID_STL=none"
cppFlags += "-Wno-c++2b-extensions"
arguments += arrayOf(
"-DANDROID_STL=none",
"-DCMAKE_CXX_STANDARD=23",
"-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON",
)
}

buildTypes {
Expand Down

0 comments on commit a28c22e

Please sign in to comment.