From: Rich Felker Date: Thu, 23 Feb 2017 00:25:13 +0000 (-0500) Subject: allow page size to vary on arm X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=0a4a16d11cc263c3f32325f985b9ed94b04af79f;p=musl allow page size to vary on arm the ABI for arm was silently changed at some point to allow page sizes other than 4k; traditional binaries built with only 4k-aligned offsets between load segments cannot run on such systems, but newer binutils versions use 64k offset alignment. while larger page size is undesirable for various reasons, users have encountered hardware and/or kernels that lock the page size to a larger value, so follow the new ABI and allow it to vary. --- diff --git a/arch/arm/bits/limits.h b/arch/arm/bits/limits.h index 65a3dd64..fbc6d238 100644 --- a/arch/arm/bits/limits.h +++ b/arch/arm/bits/limits.h @@ -1,6 +1,5 @@ #if defined(_POSIX_SOURCE) || defined(_POSIX_C_SOURCE) \ || defined(_XOPEN_SOURCE) || defined(_GNU_SOURCE) || defined(_BSD_SOURCE) -#define PAGE_SIZE 4096 #define LONG_BIT 32 #endif