From 0ba264ff4a0e9b132fdd1ccc4400b2cde240af05 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Tue, 26 Nov 2024 11:01:09 +0100 Subject: [PATCH] build: set node_arch to target_cpu in GN MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/55967 Reviewed-By: James M Snell Reviewed-By: Luigi Pinca Reviewed-By: Juan José Arboleda --- unofficial.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unofficial.gni b/unofficial.gni index e2d370329c0e8c..7c635322b770fa 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"