From 59d81b325b0e41916997f5e3cd9cb51cbc688523 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Sat, 23 Nov 2024 10:23:58 +0100 Subject: [PATCH] build: set node_arch to target_cpu in GN --- unofficial.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unofficial.gni b/unofficial.gni index 1caadb8834618d..0915879ac8120b 100644 --- a/unofficial.gni +++ b/unofficial.gni @@ -91,7 +91,7 @@ template("node_gn_build") { if (current_cpu == "x86") { node_arch = "ia32" } else { - node_arch = current_cpu + node_arch = target_cpu } if (target_os == "win") { node_platform = "win32"