summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAndrey Hohutkin <andrey.hohutkin@gmail.com>2019-12-20 21:12:45 +0200
committerRuben Bridgewater <ruben@bridgewater.de>2019-12-25 11:39:19 +0100
commit1bc7a50fdd203de2e1c3842f98525d7cd97a3cdd (patch)
tree79372942615f86041b50fb77b0ea95a8da08d141 /tools
parent489e77c119dbef43b035338bc7eb3d4a2d1ae0c8 (diff)
downloadnode-new-1bc7a50fdd203de2e1c3842f98525d7cd97a3cdd.tar.gz
tools: fix Raspbian armv7 build
PR-URL: https://github.com/nodejs/node/pull/31041 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/v8_gypfiles/v8.gyp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/v8_gypfiles/v8.gyp b/tools/v8_gypfiles/v8.gyp
index e569fb7d30..2e5477b0eb 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', ],
},