From 048b7f469c9d287115d976c4a8fc3f4d8dcf4e2b 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 e569fb7d30147e..2e5477b0eb4e49 100644 --- a/tools/v8_gypfiles/v8.gyp +++ b/tools/v8_gypfiles/v8.gyp @@ -805,7 +805,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', ], },