Skip to content

Commit

Permalink
feat: Set page size to 16KiB on android (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
Berstanio authored Aug 5, 2024
1 parent 70fb086 commit dc17f37
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ public static BuildTarget newDefaultTarget (Os type, Architecture.Bitness bitnes
if (type == Os.Android) {
BuildTarget android = new BuildTarget(Os.Android, Architecture.Bitness._32, new String[] {"**/*.c"}, new String[0],
new String[] {"**/*.cpp"}, new String[0], new String[0], "", "-O2 -Wall -D__ANDROID__", "-O2 -Wall -D__ANDROID__",
"-lm");
"-lm -Wl,-z,max-page-size=0x4000");
return android;
}

Expand Down

0 comments on commit dc17f37

Please sign in to comment.