From 443c8c51879704efd6a1f975a0c3fc1d9e25b0c2 Mon Sep 17 00:00:00 2001 From: Mihai Nita Date: Thu, 27 Feb 2025 13:07:20 -0800 Subject: [PATCH] ICU-23064 Fix for POSIX_MADV_RANDOM undefined --- icu4c/source/common/umapfile.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/icu4c/source/common/umapfile.cpp b/icu4c/source/common/umapfile.cpp index ab8829d8c38..3ba0251df9c 100644 --- a/icu4c/source/common/umapfile.cpp +++ b/icu4c/source/common/umapfile.cpp @@ -238,7 +238,12 @@ typedef HANDLE MemoryMap; pData->pHeader=(const DataHeader *)data; pData->mapAddr = data; #if U_PLATFORM == U_PF_IPHONE || U_PLATFORM == U_PF_ANDROID + // Apparently supported from Android 23 and higher: + // https://github.com/ggml-org/llama.cpp/pull/3631 + // Checking for the flag itself is safer than checking for __ANDROID_API__. +# ifdef POSIX_MADV_RANDOM posix_madvise(data, length, POSIX_MADV_RANDOM); +# endif #endif return true; }