From 340ce925a82fbd654bc6c37c624e25e43538e84c Mon Sep 17 00:00:00 2001 From: Andrey Hohutkin Date: Fri, 20 Dec 2019 21:12:45 +0200 Subject: [PATCH] tools: fix Raspbian armv7 build PR-URL: /~https://github.com/nodejs/node/pull/31041 Reviewed-By: Anna Henningsen Reviewed-By: Luigi Pinca Reviewed-By: Rich Trott Reviewed-By: Colin Ihrig --- tools/v8_gypfiles/v8.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp index b64df82fa38253..d154dcd005dd84 100644 --- a/tools/v8_gypfiles/v8.gyp +++ b/tools/v8_gypfiles/v8.gyp @@ -809,7 +809,7 @@ }], # Platforms that don't have Compare-And-Swap (CAS) support need to link atomic library # to implement atomic memory access - ['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc"]', { + ['v8_current_cpu in ["mips", "mipsel", "mips64", "mips64el", "ppc", "arm"]', { 'link_settings': { 'libraries': ['-latomic', ], },