Skip to content

Commit

Permalink
node: v10.x test
Browse files Browse the repository at this point in the history
  • Loading branch information
nxhack committed Aug 17, 2018
1 parent f69c90e commit 26db160
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion node/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ define Package/node
TITLE:=Node.js is a platform built on Chrome's JavaScript runtime
URL:=http://nodejs.org/
DEPENDS:=+libstdcpp +!NODEJS_10:libopenssl +!NODEJS_10:zlib +USE_UCLIBC:libpthread +USE_UCLIBC:librt \
+NODEJS_ICU_SYSTEM:icu
+NODEJS_ICU_SYSTEM:icu +NODEJS_10:libatomic
endef

define Package/node/description
Expand Down Expand Up @@ -129,6 +129,10 @@ endef

NODEJS_CPU:=$(subst powerpc,ppc,$(subst aarch64,arm64,$(subst x86_64,x64,$(subst i386,ia32,$(ARCH)))))

ifeq ($(CONFIG_NODEJS_10),y)
TARGET_LDFLAGS+=-latomic
endif

MAKE_VARS+= \
DESTCPU=$(NODEJS_CPU)

Expand Down

0 comments on commit 26db160

Please sign in to comment.