Skip to content

Commit

Permalink
node: fix x86_64 build
Browse files Browse the repository at this point in the history
  • Loading branch information
alllexx88 committed Oct 8, 2018
1 parent addcc11 commit a5a9894
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion make/node.mk
Expand Up @@ -59,7 +59,8 @@ NODE_LDFLAGS=
NODE_ARCH=$(strip \
$(if $(filter powerpc, $(TARGET_ARCH)), ppc, \
$(if $(filter i386 i686, $(TARGET_ARCH)), ia32, \
$(TARGET_ARCH))))
$(if $(filter x86_64, $(TARGET_ARCH)), x64, \
$(TARGET_ARCH)))))

NODE_CONFIGURE_ARCH_OPTS=--dest-cpu=$(NODE_ARCH)

Expand Down

0 comments on commit a5a9894

Please sign in to comment.