package/nodejs: use ninja for build
Not only is ninja much faster, it also avoids the following build failure: make[3]: printf: Argument list too long This failure happens when the output directory is about 6 levels deep. It's due to the make generator of gyp that uses some crazy shell processing for splitting up paths on /. The ninja generator does no such thing. While we're at it, remove redundant parenthesis in HOST_NODEJS_CONFIGURE_CMDS. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
parent
fb5aad3024
commit
fa56c5f4a2
@ -9,6 +9,7 @@ NODEJS_SOURCE = node-v$(NODEJS_VERSION).tar.xz
|
||||
NODEJS_SITE = http://nodejs.org/dist/v$(NODEJS_VERSION)
|
||||
NODEJS_DEPENDENCIES = \
|
||||
host-nodejs \
|
||||
host-ninja \
|
||||
host-pkgconf \
|
||||
host-python3 \
|
||||
host-qemu \
|
||||
@ -20,6 +21,7 @@ NODEJS_DEPENDENCIES = \
|
||||
HOST_NODEJS_DEPENDENCIES = \
|
||||
host-icu \
|
||||
host-libopenssl \
|
||||
host-ninja \
|
||||
host-pkgconf \
|
||||
host-python3 \
|
||||
host-zlib
|
||||
@ -37,7 +39,8 @@ NODEJS_CONF_OPTS = \
|
||||
--without-dtrace \
|
||||
--without-etw \
|
||||
--cross-compiling \
|
||||
--dest-os=linux
|
||||
--dest-os=linux \
|
||||
--ninja
|
||||
|
||||
HOST_NODEJS_MAKE_OPTS = \
|
||||
$(HOST_CONFIGURE_OPTS) \
|
||||
@ -82,7 +85,7 @@ NODEJS_CONF_OPTS += --without-npm
|
||||
endif
|
||||
|
||||
define HOST_NODEJS_CONFIGURE_CMDS
|
||||
(cd $(@D); \
|
||||
cd $(@D); \
|
||||
$(HOST_CONFIGURE_OPTS) \
|
||||
PATH=$(@D)/bin:$(BR_PATH) \
|
||||
PYTHON=$(HOST_DIR)/bin/python3 \
|
||||
@ -96,7 +99,7 @@ define HOST_NODEJS_CONFIGURE_CMDS
|
||||
--shared-zlib \
|
||||
--no-cross-compiling \
|
||||
--with-intl=system-icu \
|
||||
)
|
||||
--ninja
|
||||
endef
|
||||
|
||||
NODEJS_HOST_TOOLS_V8 = \
|
||||
|
Loading…
Reference in New Issue
Block a user