From 5aad0a727767651579c31d99258afb027ebaea15 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Sun, 4 May 2025 10:37:28 +0200 Subject: [PATCH] build: use //third_party/simdutf by default in GN PR-URL: https://github.com/nodejs/node/pull/58115 Reviewed-By: Cheng Zhao Reviewed-By: Yagiz Nizipli Reviewed-By: Chengzhong Wu --- node.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node.gni b/node.gni index a2123cc6c6d..35ccd0487f2 100644 --- a/node.gni +++ b/node.gni @@ -14,7 +14,7 @@ declare_args() { node_openssl_path = "$node_path/deps/openssl" # The location of simdutf - use the one from node's deps by default. - node_simdutf_path = "$node_path/deps/simdutf" + node_simdutf_path = "//third_party/simdutf" # The NODE_MODULE_VERSION defined in node_version.h. node_module_version = exec_script("$node_path/tools/getmoduleversion.py", [], "value")