Skip to content

Commit 0c9bee4

Browse files
adammwbnoordhuis
authored andcommitted
build: support ARM in makefile target 'binary'
1 parent ffb4c17 commit 0c9bee4

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,12 @@ endif
216216
ifeq ($(DESTCPU),x64)
217217
ARCH=x64
218218
else
219+
ifeq ($(DESTCPU),arm)
220+
ARCH=arm
221+
else
219222
ARCH=x86
220223
endif
224+
endif
221225
TARNAME=node-$(VERSION)
222226
TARBALL=$(TARNAME).tar.gz
223227
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)

0 commit comments

Comments
 (0)