From 2486a9965cc494845e35d1c919724418e6053167 Mon Sep 17 00:00:00 2001 From: git-bruh Date: Thu, 16 Feb 2023 13:57:37 +0530 Subject: [PATCH] nodejs: use --with-intl=small-icu Fixes broken unicode property escapes used in some projects ```js var UP = /[\p{Lu}]/u; ``` Compile time addition: ~1 minute (total is 10+ minutes) Size addition: ```diff -50MB total +60MB total ``` --- extra/nodejs/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extra/nodejs/build b/extra/nodejs/build index dc13b6bb..b15d5815 100755 --- a/extra/nodejs/build +++ b/extra/nodejs/build @@ -11,7 +11,7 @@ esac ./configure \ --shared-zlib \ --shared-openssl \ - --with-intl=none \ + --with-intl=small-icu \ --without-report \ --without-node-snapshot \ --without-node-code-cache \