From de165fb5fc23fde251a7402a2f8463ec22be22c1 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Fri, 8 Nov 2024 20:05:21 +0100 Subject: [PATCH] mipsel in debian supports 32-bit processors Forwarded: not-needed Last-Update: 2021-11-03 Gbp-Pq: Topic mips Gbp-Pq: Name mipsel_is_32.patch --- test/common/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/index.js b/test/common/index.js index 5af30b96d..dd8e3cedb 100644 --- a/test/common/index.js +++ b/test/common/index.js @@ -35,7 +35,7 @@ const { isMainThread } = require('worker_threads'); const { isModuleNamespaceObject } = require('util/types'); const tmpdir = require('./tmpdir'); -const bits = ['arm64', 'loong64', 'mips', 'mipsel', 'ppc64', 'riscv64', 's390x', 'x64'] +const bits = ['arm64', 'loong64', 'mips', 'mips64el', 'ppc64', 'riscv64', 's390x', 'x64'] .includes(process.arch) ? 64 : 32; const hasIntl = !!process.config.variables.v8_enable_i18n_support; -- 2.30.2