From: <sv...@op...> - 2024-04-21 08:20:55
|
Author: manx Date: Sun Apr 21 10:20:43 2024 New Revision: 20625 URL: https://source.openmpt.org/browse/openmpt/?op=revision&rev=20625 Log: [Imp] build: Android: Enable support for non-4kiB page sizes for NDK r27. See <https://developer.android.com/guide/practices/page-sizes>. Modified: trunk/OpenMPT/build/android_ndk/Application.mk Modified: trunk/OpenMPT/build/android_ndk/Application.mk ============================================================================== --- trunk/OpenMPT/build/android_ndk/Application.mk Sat Apr 20 22:16:42 2024 (r20624) +++ trunk/OpenMPT/build/android_ndk/Application.mk Sun Apr 21 10:20:43 2024 (r20625) @@ -3,3 +3,5 @@ APP_CPPFLAGS := -std=c++17 -fexceptions -frtti APP_LDFLAGS := APP_STL := c++_shared + +APP_SUPPORT_FLEXIBLE_PAGE_SIZES := true |