From 40829fb7cbe0f504932c9b99832388647a5c7656 Mon Sep 17 00:00:00 2001 From: deepak1556 Date: Tue, 13 Jun 2023 03:06:34 +0900 Subject: [PATCH] Revert "chore: support 64k page size" This reverts commit e43bca329b8400be3221cd5b7aba16878661cc12. --- build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.sh b/build/build.sh index 12f1be1..f6140b3 100755 --- a/build/build.sh +++ b/build/build.sh @@ -20,7 +20,7 @@ main() { elif is_aarch64_musl; then # force jemalloc to allow 16K page sizes for linux musl # https://github.com/microsoft/ripgrep-prebuilt/issues/26 - JEMALLOC_SYS_WITH_LG_PAGE=16 "$CARGO" build --target "$TARGET" --release --features 'pcre2' + JEMALLOC_SYS_WITH_LG_PAGE=14 "$CARGO" build --target "$TARGET" --release --features 'pcre2' else # Technically, MUSL builds will force PCRE2 to get statically compiled, # but we also want PCRE2 statically build for macOS binaries.