From 0e80991270bd8aab367e2eb5a28fbe69c38b3db7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juraj=20=C4=8Eurech?= Date: Tue, 10 Sep 2024 11:49:21 +0200 Subject: [PATCH] Android: Fix #616: Support for devices with 16kB page size --- src/Android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Android.mk b/src/Android.mk index 244d807b..01306fac 100644 --- a/src/Android.mk +++ b/src/Android.mk @@ -130,9 +130,9 @@ LOCAL_CPP_FEATURES += exceptions LOCAL_STATIC_LIBRARIES := PowerAuth2 LOCAL_LDLIBS := -llog ifeq ($(NDK_DEBUG),1) - LOCAL_LDFLAGS := -Wl,--hash-style=both,--exclude-libs,ALL + LOCAL_LDFLAGS := -Wl,-z,max-page-size=16384,--hash-style=both,--exclude-libs,ALL else - LOCAL_LDFLAGS := -Wl,--hash-style=both,-s,--exclude-libs,ALL + LOCAL_LDFLAGS := -Wl,-z,max-page-size=16384,--hash-style=both,-s,--exclude-libs,ALL endif LOCAL_C_INCLUDES := \