-
-
Notifications
You must be signed in to change notification settings - Fork 13
Open
Description
Google Play requires arm64 binaries to be 16kb aligned on Android, without this, you'll see this type of warning in Android Studio:
Unfortunately, I'm trying to recompile a much older version of classic-level to be 16kb aligned, otherwise I'd make a PR here.
It's pretty trivial though, in binding.gyp you want to add these ldflags "-Wl", "-z", "max-page-size=16384"
["OS == 'android'", {
"cflags": [ "-fPIC" ],
"ldflags": [ "-fPIC", "-Wl", "-z", "max-page-size=16384" ],
"cflags!": [
"-fno-tree-vrp",
"-mfloat-abi=hard",
"-fPIE"
],
"ldflags!": [ "-fPIE" "-Wl", "-z", "max-page-size=16384" ]
}],Metadata
Metadata
Assignees
Labels
No labels