2012-01-17 22:02:15 +00:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 03:02:44 +00:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-08 20:17:28 +00:00
|
|
|
PYTHON ?= python
|
2012-04-21 20:40:48 +00:00
|
|
|
DESTDIR ?=
|
2012-08-02 20:35:41 +00:00
|
|
|
SIGN ?=
|
2013-04-23 18:17:09 +00:00
|
|
|
PREFIX ?= /usr/local
|
2015-08-26 10:38:48 +00:00
|
|
|
FLAKY_TESTS ?= run
|
2015-08-26 10:41:16 +00:00
|
|
|
TEST_CI_ARGS ?=
|
2015-08-13 16:14:34 +00:00
|
|
|
STAGINGSERVER ?= node-www
|
2016-10-09 14:24:23 +00:00
|
|
|
LOGLEVEL ?= silent
|
2015-06-10 07:05:26 +00:00
|
|
|
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
|
2017-09-29 01:29:54 +00:00
|
|
|
COVTESTS ?= test-cov
|
2019-01-18 21:46:49 +00:00
|
|
|
COV_SKIP_TESTS ?= core_line_numbers.js,testFinalizer.js,test_function/test.js
|
2017-02-21 07:43:21 +00:00
|
|
|
GTEST_FILTER ?= "*"
|
2017-05-15 18:24:43 +00:00
|
|
|
GNUMAKEFLAGS += --no-print-directory
|
2017-10-09 18:30:38 +00:00
|
|
|
GCOV ?= gcov
|
2018-01-08 15:31:07 +00:00
|
|
|
PWD = $(CURDIR)
|
2019-04-30 21:59:00 +00:00
|
|
|
BUILD_WITH ?= make
|
2020-04-28 19:34:22 +00:00
|
|
|
FIND ?= find
|
2009-12-06 06:35:26 +00:00
|
|
|
|
2016-04-15 03:15:40 +00:00
|
|
|
ifdef JOBS
|
2019-07-28 13:54:08 +00:00
|
|
|
PARALLEL_ARGS = -j $(JOBS)
|
2018-04-18 09:18:38 +00:00
|
|
|
else
|
2019-07-28 13:54:08 +00:00
|
|
|
PARALLEL_ARGS = -J
|
2016-04-15 03:15:40 +00:00
|
|
|
endif
|
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
ifdef ENABLE_V8_TAP
|
2019-07-28 13:54:08 +00:00
|
|
|
TAP_V8 := --junitout $(PWD)/v8-tap.xml
|
|
|
|
TAP_V8_INTL := --junitout $(PWD)/v8-intl-tap.xml
|
|
|
|
TAP_V8_BENCHMARKS := --junitout $(PWD)/v8-benchmarks-tap.xml
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
endif
|
|
|
|
|
2016-02-29 22:44:31 +00:00
|
|
|
V8_TEST_OPTIONS = $(V8_EXTRA_TEST_OPTIONS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
ifdef DISABLE_V8_I18N
|
2019-07-28 13:54:08 +00:00
|
|
|
V8_BUILD_OPTIONS += i18nsupport=off
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
endif
|
|
|
|
|
2017-10-09 18:30:38 +00:00
|
|
|
ifeq ($(OSTYPE), darwin)
|
2019-07-28 13:54:08 +00:00
|
|
|
GCOV = xcrun llvm-cov gcov
|
2017-10-09 18:30:38 +00:00
|
|
|
endif
|
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
BUILDTYPE_LOWER := $(shell echo $(BUILDTYPE) | tr '[A-Z]' '[a-z]')
|
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
# Determine EXEEXT
|
2014-10-29 14:43:09 +00:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-30 22:59:05 +00:00
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
NODE_EXE = node$(EXEEXT)
|
2015-11-18 22:40:03 +00:00
|
|
|
NODE ?= ./$(NODE_EXE)
|
2015-08-13 16:14:34 +00:00
|
|
|
NODE_G_EXE = node_g$(EXEEXT)
|
2016-09-05 20:34:06 +00:00
|
|
|
NPM ?= ./deps/npm/bin/npm-cli.js
|
2013-02-12 07:22:12 +00:00
|
|
|
|
2015-08-13 15:30:01 +00:00
|
|
|
# Flags for packaging.
|
|
|
|
BUILD_DOWNLOAD_FLAGS ?= --download=all
|
2019-10-08 16:57:09 +00:00
|
|
|
BUILD_INTL_FLAGS ?= --with-intl=full-icu
|
2015-08-13 15:30:01 +00:00
|
|
|
BUILD_RELEASE_FLAGS ?= $(BUILD_DOWNLOAD_FLAGS) $(BUILD_INTL_FLAGS)
|
|
|
|
|
2019-03-18 14:47:34 +00:00
|
|
|
# Default to quiet/pretty builds.
|
|
|
|
# To do verbose builds, run `make V=1` or set the V environment variable.
|
|
|
|
V ?= 0
|
2012-07-24 23:19:08 +00:00
|
|
|
|
2018-08-16 06:08:00 +00:00
|
|
|
# Use -e to double check in case it's a broken link
|
|
|
|
# Use $(PWD) so we can cd to anywhere before calling this
|
|
|
|
available-node = \
|
2019-07-28 13:54:08 +00:00
|
|
|
if [ -x $(PWD)/$(NODE) ] && [ -e $(PWD)/$(NODE) ]; then \
|
2018-08-16 06:08:00 +00:00
|
|
|
$(PWD)/$(NODE) $(1); \
|
|
|
|
elif [ -x `which node` ] && [ -e `which node` ] && [ `which node` ]; then \
|
|
|
|
`which node` $(1); \
|
|
|
|
else \
|
|
|
|
echo "No available node, cannot run \"node $(1)\""; \
|
|
|
|
exit 1; \
|
|
|
|
fi;
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: all
|
2012-01-26 22:45:16 +00:00
|
|
|
# BUILDTYPE=Debug builds both release and debug builds. If you want to compile
|
|
|
|
# just the debug build, run `make -C out BUILDTYPE=Debug` instead.
|
2011-12-17 11:23:17 +00:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2018-09-30 17:44:55 +00:00
|
|
|
all: $(NODE_EXE) ## Default target, builds node in out/Release/node.
|
2011-12-17 11:23:17 +00:00
|
|
|
else
|
2018-09-30 17:44:55 +00:00
|
|
|
all: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
endif
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: help
|
2017-11-26 14:41:56 +00:00
|
|
|
# To add a target to the help, add a double comment (##) on the target line.
|
|
|
|
help: ## Print help for targets with comments.
|
|
|
|
@printf "For more targets and info see the comments in the Makefile.\n\n"
|
|
|
|
@grep -E '^[a-zA-Z0-9._-]+:.*?## .*$$' Makefile | sort | \
|
|
|
|
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
|
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 11:23:17 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
# The -r/-L check stops it recreating the link if it is already in place,
|
|
|
|
# otherwise $(NODE_EXE) being a .PHONY target means it is always re-run.
|
|
|
|
# Without the check there is a race condition between the link being deleted
|
|
|
|
# and recreated which can break the addons build when running test-ci
|
|
|
|
# See comments on the build-addons target for some more info
|
2019-04-30 21:59:00 +00:00
|
|
|
ifeq ($(BUILD_WITH), make)
|
2020-06-17 09:11:09 +00:00
|
|
|
$(NODE_EXE): build_type:=Release
|
|
|
|
$(NODE_G_EXE): build_type:=Debug
|
|
|
|
$(NODE_EXE) $(NODE_G_EXE): config.gypi out/Makefile
|
|
|
|
$(MAKE) -C out BUILDTYPE=${build_type} V=$(V)
|
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then \
|
|
|
|
ln -fs out/${build_type}/$(NODE_EXE) $@; fi
|
2019-04-30 21:59:00 +00:00
|
|
|
else
|
|
|
|
ifeq ($(BUILD_WITH), ninja)
|
|
|
|
ifeq ($(V),1)
|
2019-07-28 13:54:08 +00:00
|
|
|
NINJA_ARGS := $(NINJA_ARGS) -v
|
2019-04-30 21:59:00 +00:00
|
|
|
endif
|
|
|
|
ifdef JOBS
|
2019-07-28 13:54:08 +00:00
|
|
|
NINJA_ARGS := $(NINJA_ARGS) -j$(JOBS)
|
2019-04-30 21:59:00 +00:00
|
|
|
else
|
2019-07-28 13:54:08 +00:00
|
|
|
NINJA_ARGS := $(NINJA_ARGS) $(filter -j%,$(MAKEFLAGS))
|
2019-04-30 21:59:00 +00:00
|
|
|
endif
|
|
|
|
$(NODE_EXE): config.gypi out/Release/build.ninja
|
|
|
|
ninja -C out/Release $(NINJA_ARGS)
|
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Release/$(NODE_EXE) $@; fi
|
|
|
|
|
|
|
|
$(NODE_G_EXE): config.gypi out/Debug/build.ninja
|
|
|
|
ninja -C out/Debug $(NINJA_ARGS)
|
|
|
|
if [ ! -r $@ -o ! -L $@ ]; then ln -fs out/Debug/$(NODE_EXE) $@; fi
|
|
|
|
else
|
|
|
|
$(NODE_EXE) $(NODE_G_EXE):
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning This Makefile currently only supports building with 'make' or 'ninja')
|
2019-04-30 21:59:00 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2010-10-24 14:15:05 +00:00
|
|
|
|
2018-08-09 10:22:07 +00:00
|
|
|
ifeq ($(BUILDTYPE),Debug)
|
|
|
|
CONFIG_FLAGS += --debug
|
|
|
|
endif
|
2019-04-07 19:02:04 +00:00
|
|
|
|
2018-06-18 17:02:57 +00:00
|
|
|
.PHONY: with-code-cache
|
|
|
|
.PHONY: test-code-cache
|
2020-10-19 09:18:46 +00:00
|
|
|
with-code-cache test-code-cache:
|
|
|
|
$(warning '$@' target is a noop)
|
2018-06-18 17:02:57 +00:00
|
|
|
|
2019-03-25 02:58:29 +00:00
|
|
|
out/Makefile: config.gypi common.gypi node.gyp \
|
2019-09-17 12:17:08 +00:00
|
|
|
deps/uv/uv.gyp deps/llhttp/llhttp.gyp deps/zlib/zlib.gyp \
|
2019-07-28 13:54:08 +00:00
|
|
|
tools/v8_gypfiles/toolchain.gypi tools/v8_gypfiles/features.gypi \
|
|
|
|
tools/v8_gypfiles/inspector.gypi tools/v8_gypfiles/v8.gyp
|
2013-11-10 23:15:34 +00:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 14:03:01 +00:00
|
|
|
|
2019-09-09 20:10:25 +00:00
|
|
|
# node_version.h is listed because the N-API version is taken from there
|
|
|
|
# and included in config.gypi
|
|
|
|
config.gypi: configure configure.py src/node_version.h
|
2018-06-16 19:28:34 +00:00
|
|
|
@if [ -x config.status ]; then \
|
|
|
|
./config.status; \
|
|
|
|
else \
|
|
|
|
echo Missing or stale $@, please run ./$<; \
|
|
|
|
exit 1; \
|
|
|
|
fi
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: install
|
2017-11-26 14:41:56 +00:00
|
|
|
install: all ## Installs node into $PREFIX (default=/usr/local).
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 13:00:10 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: uninstall
|
2017-11-26 14:41:56 +00:00
|
|
|
uninstall: ## Uninstalls node from $PREFIX (default=/usr/local).
|
2013-04-23 18:17:09 +00:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 12:19:19 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: clean
|
2017-11-26 14:41:56 +00:00
|
|
|
clean: ## Remove build artifacts.
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE) \
|
2017-10-22 14:43:05 +00:00
|
|
|
out/$(BUILDTYPE)/node.exp
|
2020-04-28 19:34:22 +00:00
|
|
|
@if [ -d out ]; then $(FIND) out/ -name '*.o' -o -name '*.a' -o -name '*.d' | xargs $(RM) -r; fi
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r node_modules
|
|
|
|
@if [ -d deps/icu ]; then echo deleting deps/icu; $(RM) -r deps/icu; fi
|
|
|
|
$(RM) test.tap
|
2019-08-12 10:14:43 +00:00
|
|
|
$(MAKE) testclean
|
2017-10-22 14:43:05 +00:00
|
|
|
$(MAKE) test-addons-clean
|
2018-07-13 07:00:19 +00:00
|
|
|
$(MAKE) bench-addons-clean
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2019-08-12 10:14:43 +00:00
|
|
|
.PHONY: testclean
|
|
|
|
testclean:
|
|
|
|
# Next one is legacy remove this at some point
|
|
|
|
$(RM) -r test/tmp*
|
|
|
|
$(RM) -r test/.tmp*
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: distclean
|
2011-11-15 03:02:44 +00:00
|
|
|
distclean:
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out
|
|
|
|
$(RM) config.gypi icu_config.gypi config_fips.gypi
|
|
|
|
$(RM) config.mk
|
|
|
|
$(RM) -r $(NODE_EXE) $(NODE_G_EXE)
|
|
|
|
$(RM) -r node_modules
|
|
|
|
$(RM) -r deps/icu
|
|
|
|
$(RM) -r deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
|
|
|
|
$(RM) $(BINARYTAR).* $(TARBALL).*
|
2010-10-04 09:11:27 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: check
|
2015-03-19 22:15:54 +00:00
|
|
|
check: test
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: coverage-clean
|
2017-01-10 09:21:30 +00:00
|
|
|
# Remove files generated by running coverage, put the non-instrumented lib back
|
|
|
|
# in place
|
|
|
|
coverage-clean:
|
2017-04-01 17:12:33 +00:00
|
|
|
if [ -d lib_ ]; then $(RM) -r lib; mv lib_ lib; fi
|
|
|
|
$(RM) -r node_modules
|
2018-01-10 14:07:54 +00:00
|
|
|
$(RM) -r gcovr build
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
2018-01-23 23:37:59 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/gen/*.gcda
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcda
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcda
|
2018-01-23 23:37:59 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/gen/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcno
|
2017-10-09 18:30:38 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/tracing/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/cctest/src/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/cctest/test/cctest/*.gcno
|
2020-02-28 02:54:13 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/embedtest/src/*.gcno
|
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/embedtest/test/embedding/*.gcno
|
2017-01-10 09:21:30 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: coverage
|
2017-01-10 09:21:30 +00:00
|
|
|
# Build and test with code coverage reporting. Leave the lib directory
|
|
|
|
# instrumented for any additional runs the user may want to make.
|
|
|
|
# For C++ coverage reporting, this needs to be run in conjunction with configure
|
|
|
|
# --coverage. html coverage reports will be created under coverage/
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-commit-linux-coverage
|
2017-11-26 14:41:56 +00:00
|
|
|
coverage: coverage-test ## Run the tests and generate a coverage report.
|
2017-01-10 09:21:30 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: coverage-build
|
2017-01-10 09:21:30 +00:00
|
|
|
coverage-build: all
|
2019-01-18 21:46:49 +00:00
|
|
|
-$(MAKE) coverage-build-js
|
2018-03-02 18:39:10 +00:00
|
|
|
if [ ! -d gcovr ]; then git clone -b 3.4 --depth=1 \
|
2018-11-04 05:42:44 +00:00
|
|
|
--single-branch https://github.com/gcovr/gcovr.git; fi
|
2018-01-10 14:07:54 +00:00
|
|
|
if [ ! -d build ]; then git clone --depth=1 \
|
2018-01-04 23:42:59 +00:00
|
|
|
--single-branch https://github.com/nodejs/build.git; fi
|
2018-03-02 18:39:10 +00:00
|
|
|
if [ ! -f gcovr/scripts/gcovr.orig ]; then \
|
|
|
|
(cd gcovr && patch -N -p1 < \
|
|
|
|
"$(CURDIR)/build/jenkins/scripts/coverage/gcovr-patches-3.4.diff"); fi
|
2017-01-10 09:21:30 +00:00
|
|
|
$(MAKE)
|
|
|
|
|
2019-01-18 21:46:49 +00:00
|
|
|
.PHONY: coverage-build-js
|
|
|
|
coverage-build-js:
|
|
|
|
mkdir -p node_modules
|
|
|
|
if [ ! -d node_modules/c8 ]; then \
|
2019-01-30 23:51:21 +00:00
|
|
|
$(NODE) ./deps/npm install c8 --no-save --no-package-lock;\
|
2019-01-18 21:46:49 +00:00
|
|
|
fi
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: coverage-test
|
2017-01-10 09:21:30 +00:00
|
|
|
coverage-test: coverage-build
|
2018-01-23 23:37:59 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*.gcda
|
2019-09-07 20:20:17 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node/src/*/*.gcda
|
2018-01-27 06:35:35 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/*.gcda
|
2019-09-07 20:20:17 +00:00
|
|
|
$(RM) out/$(BUILDTYPE)/obj.target/node_lib/src/*/*.gcda
|
2019-01-22 21:26:28 +00:00
|
|
|
-NODE_V8_COVERAGE=out/$(BUILDTYPE)/.coverage \
|
2019-07-28 13:54:08 +00:00
|
|
|
TEST_CI_ARGS="$(TEST_CI_ARGS) --type=coverage" $(MAKE) $(COVTESTS)
|
2019-01-18 21:46:49 +00:00
|
|
|
$(MAKE) coverage-report-js
|
2019-09-07 20:20:17 +00:00
|
|
|
-(cd out && "../gcovr/scripts/gcovr" \
|
2020-02-28 02:54:13 +00:00
|
|
|
--gcov-exclude='.*\b(deps|usr|out|cctest|embedding)\b' -v \
|
|
|
|
-r Release/obj.target --html --html-detail -o ../coverage/cxxcoverage.html \
|
2017-10-09 18:30:38 +00:00
|
|
|
--gcov-executable="$(GCOV)")
|
2017-01-10 09:21:30 +00:00
|
|
|
@echo -n "Javascript coverage %: "
|
|
|
|
@grep -B1 Lines coverage/index.html | head -n1 \
|
|
|
|
| sed 's/<[^>]*>//g'| sed 's/ //g'
|
|
|
|
@echo -n "C++ coverage %: "
|
|
|
|
@grep -A3 Lines coverage/cxxcoverage.html | grep style \
|
|
|
|
| sed 's/<[^>]*>//g'| sed 's/ //g'
|
|
|
|
|
2019-01-30 23:51:21 +00:00
|
|
|
COV_REPORT_OPTIONS = --reporter=html \
|
|
|
|
--temp-directory=out/$(BUILDTYPE)/.coverage --omit-relative=false \
|
2019-01-31 05:16:07 +00:00
|
|
|
--resolve=./lib --exclude="benchmark/" --exclude="deps/" --exclude="test/" --exclude="tools/" \
|
2019-01-30 23:51:21 +00:00
|
|
|
--wrapper-length=0
|
|
|
|
ifdef COV_ENFORCE_THRESHOLD
|
2019-07-28 13:54:08 +00:00
|
|
|
COV_REPORT_OPTIONS += --check-coverage --lines=$(COV_ENFORCE_THRESHOLD)
|
2019-01-30 23:51:21 +00:00
|
|
|
endif
|
|
|
|
|
2019-01-18 21:46:49 +00:00
|
|
|
.PHONY: coverage-report-js
|
|
|
|
coverage-report-js:
|
2019-01-30 23:51:21 +00:00
|
|
|
$(NODE) ./node_modules/.bin/c8 report $(COV_REPORT_OPTIONS)
|
2019-01-18 21:46:49 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: cctest
|
2017-11-12 19:54:28 +00:00
|
|
|
# Runs the C++ tests using the built `cctest` executable.
|
2015-03-19 01:01:45 +00:00
|
|
|
cctest: all
|
2017-02-21 07:43:21 +00:00
|
|
|
@out/$(BUILDTYPE)/$@ --gtest_filter=$(GTEST_FILTER)
|
2020-03-12 12:11:48 +00:00
|
|
|
@out/$(BUILDTYPE)/embedtest "require('./test/embedding/test-embedding.js')"
|
2017-02-21 07:43:21 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: list-gtests
|
2017-02-21 07:43:21 +00:00
|
|
|
list-gtests:
|
|
|
|
ifeq (,$(wildcard out/$(BUILDTYPE)/cctest))
|
|
|
|
$(error Please run 'make cctest' first)
|
|
|
|
endif
|
|
|
|
@out/$(BUILDTYPE)/cctest --gtest_list_tests
|
2015-03-19 01:01:45 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: v8
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-commit-v8-linux
|
|
|
|
# Rebuilds deps/v8 as a git tree, pulls its third-party dependencies, and
|
|
|
|
# builds it.
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
v8:
|
2018-03-14 12:04:48 +00:00
|
|
|
tools/make-v8.sh $(V8_ARCH).$(BUILDTYPE_LOWER) $(V8_BUILD_OPTIONS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
|
2018-03-13 15:21:13 +00:00
|
|
|
.PHONY: jstest
|
2020-05-01 11:07:15 +00:00
|
|
|
jstest: build-addons build-js-native-api-tests build-node-api-tests ## Runs addon tests and JS tests
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \
|
2020-10-17 16:13:33 +00:00
|
|
|
$(TEST_CI_ARGS) \
|
2018-05-17 01:03:53 +00:00
|
|
|
--skip-tests=$(CI_SKIP_TESTS) \
|
2020-07-20 04:13:13 +00:00
|
|
|
$(JS_SUITES) \
|
|
|
|
$(NATIVE_SUITES)
|
2018-03-13 15:21:13 +00:00
|
|
|
|
2019-06-27 03:17:43 +00:00
|
|
|
.PHONY: tooltest
|
|
|
|
tooltest:
|
2019-11-08 19:58:49 +00:00
|
|
|
@$(PYTHON) -m unittest discover -s ./test/tools
|
2019-06-27 03:17:43 +00:00
|
|
|
|
2019-01-18 21:46:49 +00:00
|
|
|
.PHONY: coverage-run-js
|
|
|
|
coverage-run-js:
|
|
|
|
$(RM) -r out/$(BUILDTYPE)/.coverage
|
|
|
|
$(MAKE) coverage-build-js
|
|
|
|
-NODE_V8_COVERAGE=out/$(BUILDTYPE)/.coverage CI_SKIP_TESTS=$(COV_SKIP_TESTS) \
|
2019-07-28 13:54:08 +00:00
|
|
|
TEST_CI_ARGS="$(TEST_CI_ARGS) --type=coverage" $(MAKE) jstest
|
2019-01-18 21:46:49 +00:00
|
|
|
$(MAKE) coverage-report-js
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test
|
2017-11-12 19:54:28 +00:00
|
|
|
# This does not run tests of third-party libraries inside deps.
|
2018-01-23 10:49:25 +00:00
|
|
|
test: all ## Runs default tests, linters, and builds docs.
|
2019-08-19 12:09:12 +00:00
|
|
|
$(MAKE) -s tooltest
|
2018-09-27 04:32:37 +00:00
|
|
|
$(MAKE) -s test-doc
|
2018-01-23 10:49:25 +00:00
|
|
|
$(MAKE) -s build-addons
|
2018-11-17 20:34:54 +00:00
|
|
|
$(MAKE) -s build-js-native-api-tests
|
|
|
|
$(MAKE) -s build-node-api-tests
|
2017-11-14 07:41:10 +00:00
|
|
|
$(MAKE) -s cctest
|
2018-03-13 15:21:13 +00:00
|
|
|
$(MAKE) -s jstest
|
2009-10-03 20:42:03 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-only
|
2018-01-23 10:49:25 +00:00
|
|
|
test-only: all ## For a quick test, does not run linter or build docs.
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 20:34:54 +00:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2017-10-18 05:58:46 +00:00
|
|
|
$(MAKE) cctest
|
2018-03-13 15:21:13 +00:00
|
|
|
$(MAKE) jstest
|
2019-06-27 03:17:43 +00:00
|
|
|
$(MAKE) tooltest
|
2017-10-18 05:58:46 +00:00
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Used by `make coverage-test`
|
2018-01-23 10:49:25 +00:00
|
|
|
test-cov: all
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 20:34:54 +00:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2019-09-07 20:20:17 +00:00
|
|
|
$(MAKE) cctest
|
2019-01-18 21:46:49 +00:00
|
|
|
CI_SKIP_TESTS=$(COV_SKIP_TESTS) $(MAKE) jstest
|
2017-09-29 01:29:54 +00:00
|
|
|
|
2014-12-17 13:30:04 +00:00
|
|
|
test-parallel: all
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) parallel
|
2014-12-17 13:30:04 +00:00
|
|
|
|
2010-12-22 18:24:34 +00:00
|
|
|
test-valgrind: all
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --valgrind sequential parallel message
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2017-04-17 04:01:00 +00:00
|
|
|
test-check-deopts: all
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) --check-deopts parallel sequential
|
2017-04-17 04:01:00 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
DOCBUILDSTAMP_PREREQS = tools/doc/addon-verify.js doc/api/addons.md
|
2016-08-26 14:07:29 +00:00
|
|
|
|
|
|
|
ifeq ($(OSTYPE),aix)
|
2018-01-23 10:49:25 +00:00
|
|
|
DOCBUILDSTAMP_PREREQS := $(DOCBUILDSTAMP_PREREQS) out/$(BUILDTYPE)/node.exp
|
2016-08-26 14:07:29 +00:00
|
|
|
endif
|
|
|
|
|
2018-11-06 02:55:09 +00:00
|
|
|
node_use_openssl = $(call available-node,"-p" \
|
2019-07-28 13:54:08 +00:00
|
|
|
"process.versions.openssl != undefined")
|
2018-07-07 01:46:38 +00:00
|
|
|
test/addons/.docbuildstamp: $(DOCBUILDSTAMP_PREREQS) tools/doc/node_modules
|
2018-11-06 02:55:09 +00:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping .docbuildstamp (no crypto)"; \
|
|
|
|
else \
|
|
|
|
$(RM) -r test/addons/??_*/; \
|
|
|
|
[ -x $(NODE) ] && $(NODE) $< || node $< ; \
|
|
|
|
touch $@; \
|
2018-12-18 12:36:45 +00:00
|
|
|
fi
|
2016-06-10 09:33:14 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
ADDONS_BINDING_GYPS := \
|
|
|
|
$(filter-out test/addons/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/addons/*/binding.gyp))
|
2015-08-18 19:29:59 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
ADDONS_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/addons/??_*/*.cc, $(wildcard test/addons/*/*.cc)) \
|
|
|
|
$(filter-out test/addons/??_*/*.h, $(wildcard test/addons/*/*.h))
|
2017-03-20 21:55:26 +00:00
|
|
|
|
2018-08-07 11:09:04 +00:00
|
|
|
ADDONS_PREREQS := config.gypi \
|
|
|
|
deps/npm/node_modules/node-gyp/package.json tools/build-addons.js \
|
|
|
|
deps/uv/include/*.h deps/v8/include/*.h \
|
|
|
|
src/node.h src/node_buffer.h src/node_object_wrap.h src/node_version.h
|
|
|
|
|
|
|
|
define run_build_addons
|
|
|
|
env npm_config_loglevel=$(LOGLEVEL) npm_config_nodedir="$$PWD" \
|
2019-07-28 13:54:08 +00:00
|
|
|
npm_config_python="$(PYTHON)" $(NODE) "$$PWD/tools/build-addons" \
|
|
|
|
"$$PWD/deps/npm/node_modules/node-gyp/bin/node-gyp.js" \
|
|
|
|
$1
|
2018-08-07 11:09:04 +00:00
|
|
|
touch $2
|
|
|
|
endef
|
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
|
|
|
# Depends on node-gyp package.json so that build-addons is (re)executed when
|
|
|
|
# node-gyp is updated as part of an npm update.
|
2018-08-07 11:09:04 +00:00
|
|
|
test/addons/.buildstamp: $(ADDONS_PREREQS) \
|
2018-01-23 10:49:25 +00:00
|
|
|
$(ADDONS_BINDING_GYPS) $(ADDONS_BINDING_SOURCES) \
|
|
|
|
test/addons/.docbuildstamp
|
2018-08-07 11:09:04 +00:00
|
|
|
@$(call run_build_addons,"$$PWD/test/addons",$@)
|
2018-01-20 00:00:34 +00:00
|
|
|
|
|
|
|
.PHONY: build-addons
|
2018-01-23 10:49:25 +00:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp update.
|
|
|
|
build-addons: | $(NODE_EXE) test/addons/.buildstamp
|
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
JS_NATIVE_API_BINDING_GYPS := \
|
|
|
|
$(filter-out test/js-native-api/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/js-native-api/*/binding.gyp))
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
JS_NATIVE_API_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.c, $(wildcard test/js-native-api/*/*.c)) \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.cc, $(wildcard test/js-native-api/*/*.cc)) \
|
|
|
|
$(filter-out test/js-native-api/??_*/*.h, $(wildcard test/js-native-api/*/*.h))
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-js-native-api-tests rule for rationale.
|
|
|
|
test/js-native-api/.buildstamp: $(ADDONS_PREREQS) \
|
|
|
|
$(JS_NATIVE_API_BINDING_GYPS) $(JS_NATIVE_API_BINDING_SOURCES) \
|
2018-10-19 19:10:59 +00:00
|
|
|
src/node_api.h src/node_api_types.h src/js_native_api.h \
|
|
|
|
src/js_native_api_types.h src/js_native_api_v8.h src/js_native_api_v8_internals.h
|
2018-11-17 20:34:54 +00:00
|
|
|
@$(call run_build_addons,"$$PWD/test/js-native-api",$@)
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
.PHONY: build-js-native-api-tests
|
2018-01-23 10:49:25 +00:00
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
2018-11-17 20:34:54 +00:00
|
|
|
build-js-native-api-tests: | $(NODE_EXE) test/js-native-api/.buildstamp
|
|
|
|
|
|
|
|
NODE_API_BINDING_GYPS := \
|
|
|
|
$(filter-out test/node-api/??_*/binding.gyp, \
|
|
|
|
$(wildcard test/node-api/*/binding.gyp))
|
|
|
|
|
|
|
|
NODE_API_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/node-api/??_*/*.c, $(wildcard test/node-api/*/*.c)) \
|
|
|
|
$(filter-out test/node-api/??_*/*.cc, $(wildcard test/node-api/*/*.cc)) \
|
|
|
|
$(filter-out test/node-api/??_*/*.h, $(wildcard test/node-api/*/*.h))
|
|
|
|
|
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-node-api-tests rule for rationale.
|
|
|
|
test/node-api/.buildstamp: $(ADDONS_PREREQS) \
|
|
|
|
$(NODE_API_BINDING_GYPS) $(NODE_API_BINDING_SOURCES) \
|
|
|
|
src/node_api.h src/node_api_types.h src/js_native_api.h \
|
|
|
|
src/js_native_api_types.h src/js_native_api_v8.h src/js_native_api_v8_internals.h
|
|
|
|
@$(call run_build_addons,"$$PWD/test/node-api",$@)
|
|
|
|
|
|
|
|
.PHONY: build-node-api-tests
|
|
|
|
# .buildstamp needs $(NODE_EXE) but cannot depend on it
|
|
|
|
# directly because it calls make recursively. The parent make cannot know
|
|
|
|
# if the subprocess touched anything so it pessimistically assumes that
|
|
|
|
# .buildstamp is out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp or node-gyp update.
|
|
|
|
build-node-api-tests: | $(NODE_EXE) test/node-api/.buildstamp
|
2017-03-20 21:55:26 +00:00
|
|
|
|
2019-10-16 17:47:02 +00:00
|
|
|
BENCHMARK_NAPI_BINDING_GYPS := $(wildcard benchmark/napi/*/binding.gyp)
|
|
|
|
|
|
|
|
BENCHMARK_NAPI_BINDING_SOURCES := \
|
|
|
|
$(wildcard benchmark/napi/*/*.c) \
|
|
|
|
$(wildcard benchmark/napi/*/*.cc) \
|
|
|
|
$(wildcard benchmark/napi/*/*.h)
|
|
|
|
|
|
|
|
benchmark/napi/.buildstamp: $(ADDONS_PREREQS) \
|
|
|
|
$(BENCHMARK_NAPI_BINDING_GYPS) $(BENCHMARK_NAPI_BINDING_SOURCES)
|
|
|
|
@$(call run_build_addons,"$$PWD/benchmark/napi",$@)
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: clear-stalled
|
2017-02-08 19:39:24 +00:00
|
|
|
clear-stalled:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Clean up any leftover processes but don't error if found.)
|
2017-02-08 19:39:24 +00:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
2017-04-01 18:50:46 +00:00
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 05:45:31 +00:00
|
|
|
echo $${PS_OUT} | xargs kill -9; \
|
2017-04-01 18:50:46 +00:00
|
|
|
fi
|
2017-02-08 19:39:24 +00:00
|
|
|
|
2020-05-01 11:07:15 +00:00
|
|
|
test-build: | all build-addons build-js-native-api-tests build-node-api-tests
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
test-build-js-native-api: all build-js-native-api-tests
|
|
|
|
|
|
|
|
test-build-node-api: all build-node-api-tests
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-all
|
2019-01-29 19:28:27 +00:00
|
|
|
test-all: test-build ## Run default tests with both Debug and Release builds.
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
test-all-valgrind: test-build
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug,release --valgrind
|
2010-12-22 18:24:34 +00:00
|
|
|
|
2019-01-29 19:28:27 +00:00
|
|
|
.PHONY: test-all-suites
|
2019-02-02 14:07:00 +00:00
|
|
|
test-all-suites: | clear-stalled test-build bench-addons-build doc-only ## Run all test suites.
|
2019-01-29 19:28:27 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) test/*
|
|
|
|
|
2020-07-20 04:13:13 +00:00
|
|
|
JS_SUITES ?= default
|
|
|
|
NATIVE_SUITES ?= addons js-native-api node-api
|
2019-11-29 01:45:52 +00:00
|
|
|
# CI_* variables should be kept synchronized with the ones in vcbuild.bat
|
2020-07-20 02:18:09 +00:00
|
|
|
CI_NATIVE_SUITES ?= $(NATIVE_SUITES) benchmark
|
|
|
|
CI_JS_SUITES ?= $(JS_SUITES)
|
2019-07-18 10:00:19 +00:00
|
|
|
ifeq ($(node_use_openssl), false)
|
2019-07-28 13:54:08 +00:00
|
|
|
CI_DOC := doctool
|
2019-07-18 10:00:19 +00:00
|
|
|
else
|
2019-07-28 13:54:08 +00:00
|
|
|
CI_DOC =
|
2019-07-18 10:00:19 +00:00
|
|
|
endif
|
2016-06-15 12:42:21 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-ci-native
|
2016-06-15 12:42:21 +00:00
|
|
|
# Build and test addons without building anything else
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-commit-arm-fanned
|
2016-10-09 14:24:23 +00:00
|
|
|
test-ci-native: LOGLEVEL := info
|
2020-07-20 02:18:09 +00:00
|
|
|
test-ci-native: | benchmark/napi/.buildstamp test/addons/.buildstamp test/js-native-api/.buildstamp test/node-api/.buildstamp
|
2016-06-15 12:42:21 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 16:21:46 +00:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2016-06-15 12:42:21 +00:00
|
|
|
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES)
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-ci-js
|
2016-06-15 12:42:21 +00:00
|
|
|
# This target should not use a native compiler at all
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-commit-arm-fanned
|
2017-02-08 19:39:24 +00:00
|
|
|
test-ci-js: | clear-stalled
|
2016-06-15 12:42:21 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 16:21:46 +00:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2019-08-16 23:26:31 +00:00
|
|
|
$(TEST_CI_ARGS) $(CI_JS_SUITES)
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Clean up any leftover processes, error if found.)
|
2017-04-01 18:50:46 +00:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
2017-02-09 18:42:29 +00:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 05:45:31 +00:00
|
|
|
echo $${PS_OUT} | xargs kill -9; exit 1; \
|
2017-02-09 18:42:29 +00:00
|
|
|
fi
|
2016-06-15 12:42:21 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-ci
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
|
2016-10-09 14:24:23 +00:00
|
|
|
test-ci: LOGLEVEL := info
|
2020-07-10 04:47:27 +00:00
|
|
|
test-ci: | clear-stalled bench-addons-build build-addons build-js-native-api-tests build-node-api-tests doc-only
|
2019-04-14 21:24:22 +00:00
|
|
|
out/Release/cctest --gtest_output=xml:out/junit/cctest.xml
|
2016-04-15 03:15:40 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
2018-04-27 16:21:46 +00:00
|
|
|
--mode=$(BUILDTYPE_LOWER) --flaky-tests=$(FLAKY_TESTS) \
|
2017-12-29 05:10:46 +00:00
|
|
|
$(TEST_CI_ARGS) $(CI_JS_SUITES) $(CI_NATIVE_SUITES) $(CI_DOC)
|
2020-03-12 12:11:48 +00:00
|
|
|
out/Release/embedtest 'require("./test/embedding/test-embedding.js")'
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Clean up any leftover processes, error if found.)
|
2017-04-01 18:50:46 +00:00
|
|
|
ps awwx | grep Release/node | grep -v grep | cat
|
|
|
|
@PS_OUT=`ps awwx | grep Release/node | grep -v grep | awk '{print $$1}'`; \
|
2017-02-09 18:42:29 +00:00
|
|
|
if [ "$${PS_OUT}" ]; then \
|
2018-04-21 05:45:31 +00:00
|
|
|
echo $${PS_OUT} | xargs kill -9; exit 1; \
|
2017-02-09 18:42:29 +00:00
|
|
|
fi
|
2015-01-12 22:40:51 +00:00
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
.PHONY: build-ci
|
|
|
|
# Prepare the build for running the tests.
|
|
|
|
# Related CI jobs: most CI tests, excluding node-test-commit-arm-fanned
|
|
|
|
build-ci:
|
2018-09-18 18:57:05 +00:00
|
|
|
$(PYTHON) ./configure --verbose $(CONFIG_FLAGS)
|
2017-11-12 19:54:28 +00:00
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
.PHONY: run-ci
|
|
|
|
# Run by CI tests, exceptions:
|
|
|
|
# - node-test-commit-arm-fanned (Raspberry Pis), where the binaries are
|
|
|
|
# cross-compiled, then transferred elsewhere to run different subsets
|
|
|
|
# of tests. See `test-ci-native` and `test-ci-js`.
|
|
|
|
# - node-test-commit-linux-coverage: where the build and the tests need
|
|
|
|
# to be instrumented, see `coverage`.
|
2018-10-18 15:00:11 +00:00
|
|
|
#
|
|
|
|
# Using -j1 as the sub target in `test-ci` already have internal parallelism.
|
|
|
|
# Refs: https://github.com/nodejs/node/pull/23733
|
2017-11-12 19:54:28 +00:00
|
|
|
run-ci: build-ci
|
2018-10-18 15:00:11 +00:00
|
|
|
$(MAKE) test-ci -j1
|
2017-11-12 19:54:28 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
test-release: test-build
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER)
|
2010-03-02 21:18:59 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
test-debug: test-build
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=debug
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
test-message: test-build
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) message
|
2010-06-19 01:14:06 +00:00
|
|
|
|
2018-09-16 07:00:40 +00:00
|
|
|
test-wpt: all
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) wpt
|
|
|
|
|
2018-11-09 00:33:42 +00:00
|
|
|
test-simple: | cctest # Depends on 'all'.
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) parallel sequential
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2015-02-26 23:00:07 +00:00
|
|
|
test-pummel: all
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) pummel
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2010-11-01 23:03:32 +00:00
|
|
|
test-internet: all
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) internet
|
2010-02-25 06:36:17 +00:00
|
|
|
|
2016-12-11 22:37:25 +00:00
|
|
|
test-node-inspect: $(NODE_EXE)
|
|
|
|
USE_EMBEDDED_NODE_INSPECT=1 $(NODE) tools/test-npm-package \
|
|
|
|
--install deps/node-inspect test
|
|
|
|
|
2018-11-09 00:33:42 +00:00
|
|
|
test-benchmark: | bench-addons-build
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) benchmark
|
|
|
|
|
2016-11-07 21:34:54 +00:00
|
|
|
test-tick-processor: all
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) tick-processor
|
2016-11-07 21:34:54 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-hash-seed
|
2017-11-12 19:54:28 +00:00
|
|
|
# Verifies the hash seed used by V8 for hashing is random.
|
2017-06-02 07:09:49 +00:00
|
|
|
test-hash-seed: all
|
|
|
|
$(NODE) test/pummel/test-hash-seed.js
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-doc
|
2019-10-17 18:02:36 +00:00
|
|
|
test-doc: doc-only lint ## Builds, lints, and verifies the docs.
|
2019-06-13 09:59:15 +00:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping test-doc (no crypto)"; \
|
|
|
|
else \
|
2019-08-30 06:52:42 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) doctool; \
|
2019-06-13 09:59:15 +00:00
|
|
|
fi
|
2020-03-19 08:38:41 +00:00
|
|
|
$(NODE) tools/doc/checkLinks.js .
|
2017-10-22 06:05:26 +00:00
|
|
|
|
2016-03-02 17:12:47 +00:00
|
|
|
test-known-issues: all
|
2018-04-18 09:18:38 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) known_issues
|
2016-03-02 17:12:47 +00:00
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-npm
|
2017-11-26 14:41:56 +00:00
|
|
|
test-npm: $(NODE_EXE) ## Run the npm test suite on deps/npm.
|
2017-02-22 22:05:19 +00:00
|
|
|
$(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test-node
|
2011-12-17 02:04:39 +00:00
|
|
|
|
2014-08-30 22:59:05 +00:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
2015-06-12 05:12:20 +00:00
|
|
|
npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js
|
2011-07-08 17:40:35 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
.PHONY: test-js-native-api
|
|
|
|
test-js-native-api: test-build-js-native-api
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) js-native-api
|
|
|
|
|
|
|
|
.PHONY: test-js-native-api-clean
|
|
|
|
test-js-native-api-clean:
|
|
|
|
$(RM) -r test/js-native-api/*/build
|
|
|
|
$(RM) test/js-native-api/.buildstamp
|
|
|
|
|
|
|
|
.PHONY: test-node-api
|
|
|
|
test-node-api: test-build-node-api
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) node-api
|
2017-03-20 21:55:26 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
.PHONY: test-node-api-clean
|
|
|
|
test-node-api-clean:
|
|
|
|
$(RM) -r test/node-api/*/build
|
|
|
|
$(RM) test/node-api/.buildstamp
|
2017-05-15 04:58:21 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-addons
|
2020-05-01 11:07:15 +00:00
|
|
|
test-addons: test-build test-js-native-api test-node-api
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) addons
|
2014-01-18 22:49:18 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-addons-clean
|
2017-02-23 16:39:53 +00:00
|
|
|
test-addons-clean:
|
2017-05-15 04:58:21 +00:00
|
|
|
$(RM) -r test/addons/??_*/
|
|
|
|
$(RM) -r test/addons/*/build
|
2018-01-23 10:49:25 +00:00
|
|
|
$(RM) test/addons/.buildstamp test/addons/.docbuildstamp
|
2018-11-17 20:34:54 +00:00
|
|
|
$(MAKE) test-js-native-api-clean
|
|
|
|
$(MAKE) test-node-api-clean
|
2014-07-23 01:03:10 +00:00
|
|
|
|
2017-04-05 10:04:24 +00:00
|
|
|
test-async-hooks:
|
2018-04-27 16:21:46 +00:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) async-hooks
|
2017-04-05 10:04:24 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
test-with-async-hooks:
|
|
|
|
$(MAKE) build-addons
|
2018-11-17 20:34:54 +00:00
|
|
|
$(MAKE) build-js-native-api-tests
|
|
|
|
$(MAKE) build-node-api-tests
|
2017-06-20 05:21:33 +00:00
|
|
|
$(MAKE) cctest
|
2018-04-27 16:21:46 +00:00
|
|
|
NODE_TEST_WITH_ASYNC_HOOKS=1 $(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) \
|
2020-07-20 04:13:13 +00:00
|
|
|
$(JS_SUITES) \
|
|
|
|
$(NATIVE_SUITES)
|
2017-06-20 05:21:33 +00:00
|
|
|
|
2016-03-13 23:08:11 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: test-v8
|
|
|
|
.PHONY: test-v8-all
|
|
|
|
.PHONY: test-v8-benchmarks
|
|
|
|
.PHONY: test-v8-intl
|
2018-05-28 17:48:47 +00:00
|
|
|
.PHONY: test-v8-updates
|
2016-03-13 23:08:11 +00:00
|
|
|
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
|
2017-11-12 19:54:28 +00:00
|
|
|
# Related CI job: node-test-commit-v8-linux
|
2017-11-26 14:41:56 +00:00
|
|
|
test-v8: v8 ## Runs the V8 test suite on deps/v8.
|
2020-10-19 06:20:06 +00:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) $(V8_TEST_OPTIONS) \
|
2018-03-14 12:04:48 +00:00
|
|
|
mjsunit cctest debugger inspector message preparser \
|
2019-07-28 13:54:08 +00:00
|
|
|
$(TAP_V8)
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Testing hash seed)
|
2017-07-13 14:02:37 +00:00
|
|
|
$(MAKE) test-hash-seed
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
|
2016-06-29 18:05:17 +00:00
|
|
|
test-v8-intl: v8
|
2018-03-14 12:04:48 +00:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) \
|
2019-07-28 13:54:08 +00:00
|
|
|
--mode=$(BUILDTYPE_LOWER) intl \
|
|
|
|
$(TAP_V8_INTL)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
|
2016-06-29 18:05:17 +00:00
|
|
|
test-v8-benchmarks: v8
|
2018-03-14 12:04:48 +00:00
|
|
|
deps/v8/tools/run-tests.py --gn --arch=$(V8_ARCH) --mode=$(BUILDTYPE_LOWER) \
|
2019-07-28 13:54:08 +00:00
|
|
|
benchmarks \
|
|
|
|
$(TAP_V8_BENCHMARKS)
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
|
2018-05-28 17:48:47 +00:00
|
|
|
test-v8-updates:
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) --mode=$(BUILDTYPE_LOWER) v8-updates
|
|
|
|
|
|
|
|
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks test-v8-updates
|
2016-10-31 12:07:24 +00:00
|
|
|
# runs all v8 tests
|
2016-03-13 23:08:11 +00:00
|
|
|
else
|
|
|
|
test-v8 test-v8-intl test-v8-benchmarks test-v8-all:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Testing V8 is not available through the source tarball.)
|
|
|
|
$(warning Use the git repo instead: $$ git clone https://github.com/nodejs/node.git)
|
2016-03-13 23:08:11 +00:00
|
|
|
endif
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
apidoc_dirs = out/doc out/doc/api out/doc/api/assets
|
2016-04-20 22:12:40 +00:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.md)
|
2017-11-17 17:19:22 +00:00
|
|
|
apidocs_html = $(addprefix out/,$(apidoc_sources:.md=.html))
|
|
|
|
apidocs_json = $(addprefix out/,$(apidoc_sources:.md=.json))
|
2010-10-28 22:10:20 +00:00
|
|
|
|
2011-08-23 21:08:53 +00:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2018-09-06 20:17:54 +00:00
|
|
|
tools/doc/node_modules: tools/doc/package.json
|
2018-11-06 02:55:09 +00:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping tools/doc/node_modules (no crypto)"; \
|
|
|
|
else \
|
|
|
|
cd tools/doc && $(call available-node,$(run-npm-ci)) \
|
2018-12-18 12:36:45 +00:00
|
|
|
fi
|
2018-09-06 20:17:54 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: doc-only
|
2018-06-23 19:42:12 +00:00
|
|
|
doc-only: tools/doc/node_modules \
|
|
|
|
$(apidoc_dirs) $(apiassets) ## Builds the docs with the local or the global Node.js binary.
|
2019-07-18 10:00:19 +00:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping doc-only (no crypto)"; \
|
|
|
|
else \
|
|
|
|
$(MAKE) out/doc/api/all.html out/doc/api/all.json; \
|
|
|
|
fi
|
2017-11-17 17:19:22 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: doc
|
2015-11-18 22:40:03 +00:00
|
|
|
doc: $(NODE_EXE) doc-only
|
2010-11-13 22:57:35 +00:00
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
out/doc:
|
|
|
|
mkdir -p $@
|
|
|
|
|
|
|
|
# If it's a source tarball, doc/api already contains the generated docs.
|
|
|
|
# Just copy everything under doc/api over.
|
|
|
|
out/doc/api: doc/api
|
|
|
|
mkdir -p $@
|
|
|
|
cp -r doc/api out/doc
|
2010-10-28 22:10:20 +00:00
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
# If it's a source tarball, assets are already in doc/api/assets
|
|
|
|
out/doc/api/assets:
|
|
|
|
mkdir -p $@
|
|
|
|
if [ -d doc/api/assets ]; then cp -r doc/api/assets out/doc/api; fi;
|
|
|
|
|
|
|
|
# If it's not a source tarball, we need to copy assets from doc/api_assets
|
2020-09-04 22:50:29 +00:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% | out/doc/api/assets
|
2020-05-16 19:54:24 +00:00
|
|
|
@cp $< $@ ; $(RM) out/doc/api/assets/README.md
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2017-11-17 17:19:22 +00:00
|
|
|
|
2018-07-13 21:37:56 +00:00
|
|
|
run-npm-ci = $(PWD)/$(NPM) ci
|
2017-11-17 17:19:22 +00:00
|
|
|
|
2018-12-13 16:14:38 +00:00
|
|
|
LINK_DATA = out/doc/apilinks.json
|
2020-04-08 23:03:52 +00:00
|
|
|
VERSIONS_DATA = out/previous-doc-versions.json
|
2018-07-07 01:46:38 +00:00
|
|
|
gen-api = tools/doc/generate.js --node-version=$(FULLVERSION) \
|
2020-03-27 14:04:40 +00:00
|
|
|
--apilinks=$(LINK_DATA) $< --output-directory=out/doc/api \
|
|
|
|
--versions-file=$(VERSIONS_DATA)
|
2018-12-13 16:14:38 +00:00
|
|
|
gen-apilink = tools/doc/apilinks.js $(LINK_DATA) $(wildcard lib/*.js)
|
2018-08-19 18:03:21 +00:00
|
|
|
|
2020-09-04 22:50:29 +00:00
|
|
|
$(LINK_DATA): $(wildcard lib/*.js) tools/doc/apilinks.js | out/doc
|
2018-08-19 18:03:21 +00:00
|
|
|
$(call available-node, $(gen-apilink))
|
2012-02-27 18:59:35 +00:00
|
|
|
|
2020-03-27 14:04:40 +00:00
|
|
|
# Regenerate previous versions data if the current version changes
|
|
|
|
$(VERSIONS_DATA): CHANGELOG.md src/node_version.h tools/doc/versions.js
|
|
|
|
$(call available-node, tools/doc/versions.js $@)
|
|
|
|
|
2018-07-07 01:46:38 +00:00
|
|
|
out/doc/api/%.json out/doc/api/%.html: doc/api/%.md tools/doc/generate.js \
|
2020-03-27 14:04:40 +00:00
|
|
|
tools/doc/markdown.js tools/doc/html.js tools/doc/json.js \
|
2020-09-04 22:50:29 +00:00
|
|
|
tools/doc/apilinks.js $(VERSIONS_DATA) | $(LINK_DATA) out/doc/api
|
2018-07-07 01:46:38 +00:00
|
|
|
$(call available-node, $(gen-api))
|
2010-11-14 23:50:14 +00:00
|
|
|
|
2018-09-02 14:23:13 +00:00
|
|
|
out/doc/api/all.html: $(apidocs_html) tools/doc/allhtml.js \
|
2020-09-04 22:50:29 +00:00
|
|
|
tools/doc/apilinks.js | out/doc/api
|
2018-06-27 18:14:54 +00:00
|
|
|
$(call available-node, tools/doc/allhtml.js)
|
|
|
|
|
2020-09-04 22:50:29 +00:00
|
|
|
out/doc/api/all.json: $(apidocs_json) tools/doc/alljson.js | out/doc/api
|
2018-07-03 16:46:56 +00:00
|
|
|
$(call available-node, tools/doc/alljson.js)
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: docopen
|
2020-09-04 23:58:33 +00:00
|
|
|
docopen: out/doc/api/all.html
|
|
|
|
@$(PYTHON) -mwebbrowser file://$(abspath $<)
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2020-05-03 10:34:03 +00:00
|
|
|
.PHONY: docserve
|
2020-08-30 12:52:17 +00:00
|
|
|
docserve: $(apidocs_html) $(apiassets)
|
|
|
|
@$(PYTHON) -m http.server 8000 --bind 127.0.0.1 --directory out/doc/api
|
2020-05-03 10:34:03 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: docclean
|
2009-12-30 01:45:15 +00:00
|
|
|
docclean:
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r out/doc
|
2020-04-08 23:03:52 +00:00
|
|
|
$(RM) "$(VERSIONS_DATA)"
|
2009-12-30 01:45:15 +00:00
|
|
|
|
2013-06-04 00:05:56 +00:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-06-10 07:05:26 +00:00
|
|
|
|
|
|
|
# For nightly builds, you must set DISTTYPE to "nightly", "next-nightly" or
|
|
|
|
# "custom". For the nightly and next-nightly case, you need to set DATESTRING
|
|
|
|
# and COMMIT in order to properly name the build.
|
|
|
|
# For the rc case you need to set CUSTOMTAG to an appropriate CUSTOMTAG number
|
|
|
|
|
|
|
|
ifndef DISTTYPE
|
|
|
|
DISTTYPE=release
|
|
|
|
endif
|
|
|
|
ifeq ($(DISTTYPE),release)
|
2015-01-13 23:53:26 +00:00
|
|
|
FULLVERSION=$(VERSION)
|
2015-06-10 07:05:26 +00:00
|
|
|
else # ifeq ($(DISTTYPE),release)
|
|
|
|
ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef CUSTOMTAG
|
|
|
|
$(error CUSTOMTAG is not set for DISTTYPE=custom)
|
|
|
|
endif # ifndef CUSTOMTAG
|
|
|
|
TAG=$(CUSTOMTAG)
|
|
|
|
else # ifeq ($(DISTTYPE),custom)
|
|
|
|
ifndef DATESTRING
|
|
|
|
$(error DATESTRING is not set for nightly)
|
|
|
|
endif # ifndef DATESTRING
|
|
|
|
ifndef COMMIT
|
|
|
|
$(error COMMIT is not set for nightly)
|
|
|
|
endif # ifndef COMMIT
|
|
|
|
ifneq ($(DISTTYPE),nightly)
|
|
|
|
ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
$(error DISTTYPE is not release, custom, nightly or next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),next-nightly)
|
|
|
|
endif # ifneq ($(DISTTYPE),nightly)
|
|
|
|
TAG=$(DISTTYPE)$(DATESTRING)$(COMMIT)
|
|
|
|
endif # ifeq ($(DISTTYPE),custom)
|
|
|
|
FULLVERSION=$(VERSION)-$(TAG)
|
|
|
|
endif # ifeq ($(DISTTYPE),release)
|
|
|
|
|
|
|
|
DISTTYPEDIR ?= $(DISTTYPE)
|
2015-04-14 12:22:23 +00:00
|
|
|
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
|
2012-08-04 19:07:17 +00:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-13 23:53:26 +00:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2016-04-20 17:12:14 +00:00
|
|
|
UNAME_M=$(shell uname -m)
|
|
|
|
ifeq ($(findstring x86_64,$(UNAME_M)),x86_64)
|
2012-08-09 23:30:41 +00:00
|
|
|
DESTCPU ?= x64
|
2012-08-04 19:39:54 +00:00
|
|
|
else
|
2019-07-22 14:34:33 +00:00
|
|
|
ifeq ($(findstring amd64,$(UNAME_M)),amd64)
|
|
|
|
DESTCPU ?= x64
|
|
|
|
else
|
2016-04-20 17:12:14 +00:00
|
|
|
ifeq ($(findstring ppc64,$(UNAME_M)),ppc64)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(findstring ppc,$(UNAME_M)),ppc)
|
|
|
|
DESTCPU ?= ppc
|
|
|
|
else
|
|
|
|
ifeq ($(findstring s390x,$(UNAME_M)),s390x)
|
|
|
|
DESTCPU ?= s390x
|
|
|
|
else
|
|
|
|
ifeq ($(findstring s390,$(UNAME_M)),s390)
|
|
|
|
DESTCPU ?= s390
|
|
|
|
else
|
|
|
|
ifeq ($(findstring arm,$(UNAME_M)),arm)
|
|
|
|
DESTCPU ?= arm
|
|
|
|
else
|
|
|
|
ifeq ($(findstring aarch64,$(UNAME_M)),aarch64)
|
build: use arm64 as DESTCPU for aarch64
On a aarch64 system I can run the complete build with tests without
specifying the Makefile variable DESTCPU.
But when running the tar-headers target DESTCPU is passed to configure:
$(PYTHON) ./configure \
--prefix=/ \
--dest-cpu=$(DESTCPU) \
...
The value of DESTCPU in this case will be aarch64 which will cause
configure to fail:
configure: error: option --dest-cpu: invalid choice: 'aarch64'
(choose from 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
'ppc64', 'x32', 'x64', 'x86', 'x86_64', 's390', 's390x')
In the configure script there is a matching of __aarch64__ to arm64:
$ python -c 'from configure import host_arch_cc; print host_arch_cc()'
arm64
In our case it would be nice to have consitent behaviour for both of
these cases on aarch64.
This commit changes DESTCPU to arm64 to be consistent with the
configure script. DESTCPU is used in $(TARBALL)-headers and in
$(BINARYTAR) but I'm not sure about the implications of making the
change purposed and hope others might chime in and provide some
guidance.
PR-URL: https://github.com/nodejs/node/pull/22548
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2018-08-27 06:14:02 +00:00
|
|
|
DESTCPU ?= arm64
|
2016-04-20 17:12:14 +00:00
|
|
|
else
|
|
|
|
ifeq ($(findstring powerpc,$(shell uname -p)),powerpc)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
2015-06-10 07:05:26 +00:00
|
|
|
DESTCPU ?= x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2016-04-20 17:12:14 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2019-12-10 09:17:09 +00:00
|
|
|
endif
|
2012-08-09 23:30:41 +00:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 05:03:36 +00:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
build: use arm64 as DESTCPU for aarch64
On a aarch64 system I can run the complete build with tests without
specifying the Makefile variable DESTCPU.
But when running the tar-headers target DESTCPU is passed to configure:
$(PYTHON) ./configure \
--prefix=/ \
--dest-cpu=$(DESTCPU) \
...
The value of DESTCPU in this case will be aarch64 which will cause
configure to fail:
configure: error: option --dest-cpu: invalid choice: 'aarch64'
(choose from 'arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
'ppc64', 'x32', 'x64', 'x86', 'x86_64', 's390', 's390x')
In the configure script there is a matching of __aarch64__ to arm64:
$ python -c 'from configure import host_arch_cc; print host_arch_cc()'
arm64
In our case it would be nice to have consitent behaviour for both of
these cases on aarch64.
This commit changes DESTCPU to arm64 to be consistent with the
configure script. DESTCPU is used in $(TARBALL)-headers and in
$(BINARYTAR) but I'm not sure about the implications of making the
change purposed and hope others might chime in and provide some
guidance.
PR-URL: https://github.com/nodejs/node/pull/22548
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
2018-08-27 06:14:02 +00:00
|
|
|
ifeq ($(DESTCPU),arm64)
|
2016-02-11 02:57:20 +00:00
|
|
|
ARCH=arm64
|
|
|
|
else
|
2015-07-07 18:15:03 +00:00
|
|
|
ifeq ($(DESTCPU),ppc64)
|
|
|
|
ARCH=ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),ppc)
|
|
|
|
ARCH=ppc
|
|
|
|
else
|
2016-03-28 21:03:06 +00:00
|
|
|
ifeq ($(DESTCPU),s390)
|
|
|
|
ARCH=s390
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),s390x)
|
|
|
|
ARCH=s390x
|
|
|
|
else
|
2012-08-09 23:30:41 +00:00
|
|
|
ARCH=x86
|
2012-08-04 19:39:54 +00:00
|
|
|
endif
|
2012-11-27 05:03:36 +00:00
|
|
|
endif
|
2015-07-07 18:15:03 +00:00
|
|
|
endif
|
|
|
|
endif
|
2016-02-11 02:57:20 +00:00
|
|
|
endif
|
2016-03-28 21:03:06 +00:00
|
|
|
endif
|
|
|
|
endif
|
2015-06-10 07:05:26 +00:00
|
|
|
|
test: run v8 tests from node tree
Ported by exinfinitum from a PR by jasnell:
see https://github.com/nodejs/node-v0.x-archive/pull/14185
Allows the running of v8 tests on node's packaged v8 source code.
Note that the limited win32 support added by jasnell has NOT been ported,
and so these tests are currently UNIX ONLY.
Note that gclient depot tools
(see https://commondatastorage.googleapis.com/
chrome-infra-docs/flat/depot_tools/docs/html/
depot_tools_tutorial.html#_setting_up) and subversion are required
to run tests.
To perform tests, run the following commands:
make v8 DESTCPU=(ARCH)
make test-v8 DESTCPU=(ARCH)
where (ARCH) is your CPU architecture, e.g. x64, ia32.
DESTCPU MUST be specified for this to work properly.
Can also do tests on debug build by using "make test-v8 DESTCPU=(ARCH)
BUILDTYPE=Debug", or perform intl or benchmark tests via make
test-v8-intl or test-v8-benchmarks respectively.
Note that by default, quickcheck and TAP output are disabled, and i18n
is enabled. To activate these options, use options"QUICKCHECK=True" and
"ENABLE_V8_TAP=True" respectively.
Use "DISABLE_V8_I18N" to disable i18n.
Use V8_BUILD_OPTIONS to allow custom user-defined flags to be
appended onto "make v8".
Any tests performed after changes to the packaged v8 file will require
recompiling of v8, which can be done using "make v8 DESTCPU=(ARCH)".
Finally, two additional files necessary for one of the v8 tests have
been added to the v8 folder.
PR-URL: https://github.com/nodejs/node/pull/4704
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
Reviewed-By: targos - Michaël Zasso <mic.besace@gmail.com>
2015-03-28 04:39:06 +00:00
|
|
|
# node and v8 use different arch names (e.g. node 'x86' vs v8 'ia32').
|
|
|
|
# pass the proper v8 arch name to $V8_ARCH based on user-specified $DESTCPU.
|
|
|
|
ifeq ($(DESTCPU),x86)
|
|
|
|
V8_ARCH=ia32
|
|
|
|
else
|
|
|
|
V8_ARCH ?= $(DESTCPU)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
# enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel
|
|
|
|
ifeq ($(ARCH),ia32)
|
|
|
|
override ARCH=x86
|
2013-02-26 06:51:00 +00:00
|
|
|
endif
|
2015-06-10 07:05:26 +00:00
|
|
|
ifeq ($(DESTCPU),ia32)
|
|
|
|
override DESTCPU=x86
|
|
|
|
endif
|
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
TARNAME=node-$(FULLVERSION)
|
2015-01-13 01:51:34 +00:00
|
|
|
TARBALL=$(TARNAME).tar
|
2016-01-11 19:54:33 +00:00
|
|
|
# Custom user-specified variation, use it directly
|
|
|
|
ifdef VARIATION
|
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)-$(VARIATION)
|
|
|
|
else
|
2012-08-04 19:07:17 +00:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2016-01-11 19:54:33 +00:00
|
|
|
endif
|
2015-01-13 01:51:34 +00:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
2015-06-10 07:05:26 +00:00
|
|
|
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
2018-12-04 23:56:02 +00:00
|
|
|
HAS_XZ ?= $(shell which xz > /dev/null 2>&1; [ $$? -eq 0 ] && echo 1 || echo 0)
|
2018-11-21 11:02:54 +00:00
|
|
|
# Supply SKIP_XZ=1 to explicitly skip .tar.xz creation
|
|
|
|
SKIP_XZ ?= 0
|
2018-12-04 23:56:02 +00:00
|
|
|
XZ = $(shell [ $(HAS_XZ) -eq 1 -a $(SKIP_XZ) -eq 0 ] && echo 1 || echo 0)
|
2017-01-05 05:09:32 +00:00
|
|
|
XZ_COMPRESSION ?= 9e
|
2015-06-10 07:05:26 +00:00
|
|
|
PKG=$(TARNAME).pkg
|
2017-09-04 10:07:56 +00:00
|
|
|
MACOSOUTDIR=out/macos
|
2011-11-21 03:22:30 +00:00
|
|
|
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(SKIP_XZ), 1)
|
|
|
|
check-xz:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info SKIP_XZ=1 supplied, skipping .tar.xz creation)
|
2018-11-21 11:02:54 +00:00
|
|
|
else
|
|
|
|
ifeq ($(HAS_XZ), 1)
|
|
|
|
check-xz:
|
|
|
|
else
|
|
|
|
check-xz:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(error No xz command, cannot continue)
|
2018-11-21 11:02:54 +00:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: release-only
|
2018-11-21 11:02:54 +00:00
|
|
|
release-only: check-xz
|
2017-05-11 02:33:29 +00:00
|
|
|
@if [ "$(DISTTYPE)" = "release" ] && `grep -q REPLACEME doc/api/*.md`; then \
|
2020-10-06 16:47:36 +00:00
|
|
|
echo 'Please update REPLACEME tags in the following doc/api/*.md files (See doc/guides/releases.md):\n' ; \
|
|
|
|
REPLACEMES="$(shell grep -l REPLACEME doc/api/*.md)" ; \
|
|
|
|
echo "$$REPLACEMES\n" | tr " " "\n" ; \
|
2016-05-13 21:24:33 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2017-05-11 02:33:29 +00:00
|
|
|
@if [ "$(DISTTYPE)" = "release" ] && \
|
2018-04-28 17:24:40 +00:00
|
|
|
`grep -q DEP...X doc/api/deprecations.md`; then \
|
2020-02-14 12:54:11 +00:00
|
|
|
echo 'Please update DEP...X in doc/api/deprecations.md (See doc/guides/releases.md)' ; \
|
2017-08-08 22:00:17 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2012-08-04 22:34:04 +00:00
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00:00
|
|
|
echo "The git repository is not clean." >&2 ; \
|
|
|
|
echo "Please commit changes before building release tarball." >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
git status --porcelain | egrep -v '^\?\?' >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2015-06-10 07:05:26 +00:00
|
|
|
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 0; \
|
|
|
|
else \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "" >&2 ; \
|
2012-08-09 23:30:41 +00:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2015-01-18 06:41:37 +00:00
|
|
|
echo "Did you remember to update src/node_version.h?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
2012-08-04 22:34:04 +00:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
$(PKG): release-only
|
2017-09-04 10:07:56 +00:00
|
|
|
$(RM) -r $(MACOSOUTDIR)
|
|
|
|
mkdir -p $(MACOSOUTDIR)/installer/productbuild
|
|
|
|
cat tools/macos-installer/productbuild/distribution.xml.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/distribution.xml ; \
|
|
|
|
|
|
|
|
@for dirname in tools/macos-installer/productbuild/Resources/*/; do \
|
|
|
|
lang=$$(basename $$dirname) ; \
|
|
|
|
mkdir -p $(MACOSOUTDIR)/installer/productbuild/Resources/$$lang ; \
|
|
|
|
printf "Found localization directory $$dirname\n" ; \
|
|
|
|
cat $$dirname/welcome.html.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/Resources/$$lang/welcome.html ; \
|
|
|
|
cat $$dirname/conclusion.html.tmpl \
|
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
>$(MACOSOUTDIR)/installer/productbuild/Resources/$$lang/conclusion.html ; \
|
|
|
|
done
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--dest-cpu=x64 \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2017-09-04 10:07:56 +00:00
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(MACOSOUTDIR)/dist/node
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(MACOSOUTDIR)/dist/node/usr/local" bash \
|
2017-07-12 00:04:53 +00:00
|
|
|
tools/osx-codesign.sh
|
2017-09-04 10:07:56 +00:00
|
|
|
mkdir -p $(MACOSOUTDIR)/dist/npm/usr/local/lib/node_modules
|
|
|
|
mkdir -p $(MACOSOUTDIR)/pkgs
|
|
|
|
mv $(MACOSOUTDIR)/dist/node/usr/local/lib/node_modules/npm \
|
|
|
|
$(MACOSOUTDIR)/dist/npm/usr/local/lib/node_modules
|
|
|
|
unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npm
|
|
|
|
unlink $(MACOSOUTDIR)/dist/node/usr/local/bin/npx
|
|
|
|
$(NODE) tools/license2rtf.js < LICENSE > \
|
|
|
|
$(MACOSOUTDIR)/installer/productbuild/Resources/license.rtf
|
|
|
|
cp doc/osx_installer_logo.png $(MACOSOUTDIR)/installer/productbuild/Resources
|
|
|
|
pkgbuild --version $(FULLVERSION) \
|
|
|
|
--identifier org.nodejs.node.pkg \
|
|
|
|
--root $(MACOSOUTDIR)/dist/node $(MACOSOUTDIR)/pkgs/node-$(FULLVERSION).pkg
|
|
|
|
pkgbuild --version $(NPMVERSION) \
|
|
|
|
--identifier org.nodejs.npm.pkg \
|
|
|
|
--root $(MACOSOUTDIR)/dist/npm \
|
|
|
|
--scripts ./tools/macos-installer/pkgbuild/npm/scripts \
|
|
|
|
$(MACOSOUTDIR)/pkgs/npm-$(NPMVERSION).pkg
|
|
|
|
productbuild --distribution $(MACOSOUTDIR)/installer/productbuild/distribution.xml \
|
|
|
|
--resources $(MACOSOUTDIR)/installer/productbuild/Resources \
|
|
|
|
--package-path $(MACOSOUTDIR)/pkgs ./$(PKG)
|
2015-06-10 07:05:26 +00:00
|
|
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
2020-01-22 03:38:11 +00:00
|
|
|
bash tools/osx-notarize.sh $(FULLVERSION)
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: pkg
|
2017-11-12 19:54:28 +00:00
|
|
|
# Builds the macOS installer for releases.
|
2015-06-10 07:05:26 +00:00
|
|
|
pkg: $(PKG)
|
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 07:05:26 +00:00
|
|
|
pkg-upload: pkg
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00:00
|
|
|
chmod 664 $(TARNAME).pkg
|
|
|
|
scp -p $(TARNAME).pkg $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).pkg
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).pkg.done"
|
2011-11-11 22:31:15 +00:00
|
|
|
|
2020-07-24 16:46:13 +00:00
|
|
|
$(TARBALL): release-only doc-only
|
2015-02-26 00:08:16 +00:00
|
|
|
git checkout-index -a -f --prefix=$(TARNAME)/
|
2012-06-06 22:01:31 +00:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-08-13 16:14:34 +00:00
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2012-06-06 22:01:31 +00:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2018-01-23 23:37:59 +00:00
|
|
|
$(RM) -r $(TARNAME)/.editorconfig
|
|
|
|
$(RM) -r $(TARNAME)/.git*
|
|
|
|
$(RM) -r $(TARNAME)/.mailmap
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/demos
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/doc
|
|
|
|
$(RM) -r $(TARNAME)/deps/openssl/openssl/test
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/docs
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/samples
|
|
|
|
$(RM) -r $(TARNAME)/deps/uv/test
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/samples
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/tools/profviz
|
|
|
|
$(RM) -r $(TARNAME)/deps/v8/tools/run-tests.py
|
|
|
|
$(RM) -r $(TARNAME)/doc/images # too big
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)/test*.tap
|
2018-01-23 23:37:59 +00:00
|
|
|
$(RM) -r $(TARNAME)/tools/cpplint.py
|
|
|
|
$(RM) -r $(TARNAME)/tools/eslint-rules
|
|
|
|
$(RM) -r $(TARNAME)/tools/license-builder.sh
|
|
|
|
$(RM) -r $(TARNAME)/tools/node_modules
|
|
|
|
$(RM) -r $(TARNAME)/tools/osx-*
|
|
|
|
$(RM) -r $(TARNAME)/tools/osx-pkg.pmdoc
|
2019-09-26 06:07:53 +00:00
|
|
|
find $(TARNAME)/deps/v8/test/* -type d ! -regex '.*/test/torque$$' | xargs $(RM) -r
|
|
|
|
find $(TARNAME)/deps/v8/test -type f ! -regex '.*/test/torque/.*' | xargs $(RM)
|
2020-03-04 19:11:37 +00:00
|
|
|
find $(TARNAME)/deps/zlib/contrib/* -type d ! -regex '.*/contrib/optimizations$$' | xargs $(RM) -r
|
2017-04-01 17:12:33 +00:00
|
|
|
find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs $(RM)
|
|
|
|
find $(TARNAME)/ -type l | xargs $(RM) # annoying on windows
|
2010-05-13 22:54:50 +00:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(TARNAME).tar
|
2009-10-03 19:46:59 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: tar
|
2017-11-26 14:41:56 +00:00
|
|
|
tar: $(TARBALL) ## Create a source tarball.
|
2012-08-04 19:12:22 +00:00
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 07:05:26 +00:00
|
|
|
tar-upload: tar
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00:00
|
|
|
chmod 664 $(TARNAME).tar.gz
|
|
|
|
scp -p $(TARNAME).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.gz.done"
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-09-15 17:32:37 +00:00
|
|
|
chmod 664 $(TARNAME).tar.xz
|
|
|
|
scp -p $(TARNAME).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME).tar.xz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
endif
|
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2017-01-25 20:54:34 +00:00
|
|
|
doc-upload: doc
|
2017-05-11 02:09:50 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod -R ug=rw-x+X,o=r+X out/doc/
|
2017-05-11 02:09:50 +00:00
|
|
|
scp -pr out/doc/* $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: $(TARBALL)-headers
|
2016-03-31 17:23:42 +00:00
|
|
|
$(TARBALL)-headers: release-only
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2015-06-30 06:57:47 +00:00
|
|
|
HEADERS_ONLY=1 $(PYTHON) tools/install.py install '$(TARNAME)' '/'
|
2017-04-01 17:12:33 +00:00
|
|
|
find $(TARNAME)/ -type l | xargs $(RM)
|
2015-06-14 10:23:43 +00:00
|
|
|
tar -cf $(TARNAME)-headers.tar $(TARNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(TARNAME)
|
2015-06-14 10:23:43 +00:00
|
|
|
gzip -c -f -9 $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.gz
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-06-14 10:23:43 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.xz
|
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(TARNAME)-headers.tar
|
2015-06-14 10:23:43 +00:00
|
|
|
|
2017-11-26 14:41:56 +00:00
|
|
|
tar-headers: $(TARBALL)-headers ## Build the node header tarball.
|
2015-06-14 10:23:43 +00:00
|
|
|
|
|
|
|
tar-headers-upload: tar-headers
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.gz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p $(TARNAME)-headers.tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.gz.done"
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-08-31 07:33:22 +00:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.xz
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -p $(TARNAME)-headers.tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-headers.tar.xz.done"
|
2015-06-14 10:23:43 +00:00
|
|
|
endif
|
|
|
|
|
2012-08-04 22:34:04 +00:00
|
|
|
$(BINARYTAR): release-only
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(BINARYNAME)
|
|
|
|
$(RM) -r out/deps out/Release
|
2015-01-18 06:41:37 +00:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 15:30:01 +00:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2012-08-04 19:07:17 +00:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 02:16:16 +00:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2017-07-12 00:05:39 +00:00
|
|
|
ifeq ($(OSTYPE),darwin)
|
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(BINARYNAME)" bash tools/osx-codesign.sh
|
|
|
|
endif
|
2012-08-04 19:07:17 +00:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) -r $(BINARYNAME)
|
2015-01-13 01:51:34 +00:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-04-15 00:49:29 +00:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
2015-01-13 01:51:34 +00:00
|
|
|
endif
|
2017-04-01 17:12:33 +00:00
|
|
|
$(RM) $(BINARYNAME).tar
|
2012-08-04 19:07:17 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: binary
|
2017-11-12 19:54:28 +00:00
|
|
|
# This requires NODE_VERSION_IS_RELEASE defined as 1 in src/node_version.h.
|
2017-11-26 14:41:56 +00:00
|
|
|
binary: $(BINARYTAR) ## Build release binary tarballs.
|
2012-08-04 19:12:37 +00:00
|
|
|
|
2017-11-12 19:54:28 +00:00
|
|
|
# Note: this is strictly for release builds on release machines only.
|
2015-06-10 07:05:26 +00:00
|
|
|
binary-upload: binary
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-09-15 17:32:37 +00:00
|
|
|
chmod 664 $(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
scp -p $(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.gz.done"
|
2018-11-21 11:02:54 +00:00
|
|
|
ifeq ($(XZ), 1)
|
2015-09-15 17:32:37 +00:00
|
|
|
chmod 664 $(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
scp -p $(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/$(TARNAME)-$(OSTYPE)-$(ARCH).tar.xz.done"
|
2015-06-10 07:05:26 +00:00
|
|
|
endif
|
2013-06-04 00:05:56 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: bench-all
|
|
|
|
.PHONY: bench
|
2020-10-19 09:18:46 +00:00
|
|
|
bench bench-all: bench-addons-build
|
|
|
|
$(warning Please use benchmark/run.js or benchmark/compare.js to run the benchmarks.)
|
2016-03-27 06:12:47 +00:00
|
|
|
|
2018-07-13 07:00:19 +00:00
|
|
|
# Build required addons for benchmark before running it.
|
|
|
|
.PHONY: bench-addons-build
|
2019-10-16 17:47:02 +00:00
|
|
|
bench-addons-build: | $(NODE_EXE) benchmark/napi/.buildstamp
|
2018-07-13 07:00:19 +00:00
|
|
|
|
|
|
|
.PHONY: bench-addons-clean
|
|
|
|
bench-addons-clean:
|
2019-10-16 17:47:02 +00:00
|
|
|
$(RM) -r benchmark/napi/*/build
|
|
|
|
$(RM) benchmark/napi/.buildstamp
|
2018-07-13 07:00:19 +00:00
|
|
|
|
2018-09-06 20:02:30 +00:00
|
|
|
.PHONY: lint-md-rollup
|
|
|
|
lint-md-rollup:
|
2020-02-23 11:25:09 +00:00
|
|
|
$(RM) tools/.*mdlintstamp
|
2018-11-13 09:23:17 +00:00
|
|
|
cd tools/node-lint-md-cli-rollup && npm install
|
2018-09-06 20:02:30 +00:00
|
|
|
cd tools/node-lint-md-cli-rollup && npm run build-node
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-md-clean
|
2017-05-26 08:01:27 +00:00
|
|
|
lint-md-clean:
|
2018-09-06 20:17:54 +00:00
|
|
|
$(RM) -r tools/node-lint-md-cli-rollup/node_modules
|
2017-10-29 06:50:29 +00:00
|
|
|
$(RM) tools/.*mdlintstamp
|
2017-05-26 08:01:27 +00:00
|
|
|
|
2018-02-24 19:07:56 +00:00
|
|
|
.PHONY: lint-md-build
|
2018-09-06 20:17:54 +00:00
|
|
|
lint-md-build:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Deprecated no-op target 'lint-md-build')
|
2017-10-29 06:50:29 +00:00
|
|
|
|
2020-02-23 11:25:09 +00:00
|
|
|
ifeq ("$(wildcard tools/.mdlintstamp)","")
|
2020-04-07 23:34:53 +00:00
|
|
|
LINT_MD_NEWER =
|
2020-02-23 11:25:09 +00:00
|
|
|
else
|
2020-04-07 23:34:53 +00:00
|
|
|
LINT_MD_NEWER = -newer tools/.mdlintstamp
|
2020-02-23 11:25:09 +00:00
|
|
|
endif
|
2017-10-29 06:50:29 +00:00
|
|
|
|
2020-02-23 11:25:09 +00:00
|
|
|
LINT_MD_TARGETS = doc src lib benchmark test tools/doc tools/icu $(wildcard *.md)
|
2020-04-28 19:34:22 +00:00
|
|
|
LINT_MD_FILES = $(shell $(FIND) $(LINT_MD_TARGETS) -type f \
|
2020-02-23 11:25:09 +00:00
|
|
|
! -path '*node_modules*' ! -path 'test/fixtures/*' -name '*.md' \
|
|
|
|
$(LINT_MD_NEWER))
|
|
|
|
run-lint-md = tools/lint-md.js -q -f --no-stdout $(LINT_MD_FILES)
|
|
|
|
# Lint all changed markdown files maintained by us
|
|
|
|
tools/.mdlintstamp: $(LINT_MD_FILES)
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Running Markdown linter...)
|
2020-02-23 11:25:09 +00:00
|
|
|
@$(call available-node,$(run-lint-md))
|
2018-09-17 14:33:49 +00:00
|
|
|
@touch $@
|
2017-10-29 06:50:29 +00:00
|
|
|
|
2018-09-06 20:17:54 +00:00
|
|
|
.PHONY: lint-md
|
2017-11-12 19:54:28 +00:00
|
|
|
# Lints the markdown documents maintained by us in the codebase.
|
2017-11-08 23:33:52 +00:00
|
|
|
lint-md: | tools/.mdlintstamp
|
2018-09-06 20:17:54 +00:00
|
|
|
|
2017-04-30 19:07:38 +00:00
|
|
|
|
2018-03-04 05:47:41 +00:00
|
|
|
LINT_JS_TARGETS = .eslintrc.js benchmark doc lib test tools
|
2018-01-20 17:17:47 +00:00
|
|
|
|
|
|
|
run-lint-js = tools/node_modules/eslint/bin/eslint.js --cache \
|
2018-12-19 01:45:34 +00:00
|
|
|
--report-unused-disable-directives --ext=.js,.mjs,.md $(LINT_JS_TARGETS)
|
2018-01-20 17:17:47 +00:00
|
|
|
run-lint-js-fix = $(run-lint-js) --fix
|
2017-06-05 19:32:57 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-js-fix
|
2017-11-24 02:50:19 +00:00
|
|
|
lint-js-fix:
|
2018-01-20 17:17:47 +00:00
|
|
|
@$(call available-node,$(run-lint-js-fix))
|
2017-11-24 02:50:19 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-js
|
2017-11-12 19:54:28 +00:00
|
|
|
# Note that on the CI `lint-js-ci` is run instead.
|
|
|
|
# Lints the JavaScript code with eslint.
|
2017-09-08 11:44:58 +00:00
|
|
|
lint-js:
|
2019-02-18 12:20:58 +00:00
|
|
|
@if [ "$(shell $(node_use_openssl))" != "true" ]; then \
|
|
|
|
echo "Skipping $@ (no crypto)"; \
|
|
|
|
else \
|
|
|
|
echo "Running JS linter..."; \
|
|
|
|
$(call available-node,$(run-lint-js)) \
|
|
|
|
fi
|
2016-03-10 03:40:54 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
jslint: lint-js
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Please use lint-js instead of jslint)
|
2017-09-08 11:44:58 +00:00
|
|
|
|
2019-12-13 23:38:02 +00:00
|
|
|
run-lint-js-ci = tools/node_modules/eslint/bin/eslint.js \
|
|
|
|
--report-unused-disable-directives --ext=.js,.mjs,.md -f tap \
|
|
|
|
-o test-eslint.tap $(LINT_JS_TARGETS)
|
2018-01-20 17:17:47 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-js-ci
|
2017-11-12 19:54:28 +00:00
|
|
|
# On the CI the output is emitted in the TAP format.
|
2017-09-08 11:44:58 +00:00
|
|
|
lint-js-ci:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Running JS linter...)
|
2018-01-20 17:17:47 +00:00
|
|
|
@$(call available-node,$(run-lint-js-ci))
|
2017-09-08 11:44:58 +00:00
|
|
|
|
|
|
|
jslint-ci: lint-js-ci
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Please use lint-js-ci instead of jslint-ci)
|
2010-10-15 17:05:22 +00:00
|
|
|
|
2018-04-02 09:37:11 +00:00
|
|
|
LINT_CPP_ADDON_DOC_FILES_GLOB = test/addons/??_*/*.cc test/addons/??_*/*.h
|
|
|
|
LINT_CPP_ADDON_DOC_FILES = $(wildcard $(LINT_CPP_ADDON_DOC_FILES_GLOB))
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_EXCLUDE ?=
|
|
|
|
LINT_CPP_EXCLUDE += src/node_root_certs.h
|
2018-01-23 10:49:25 +00:00
|
|
|
LINT_CPP_EXCLUDE += $(LINT_CPP_ADDON_DOC_FILES)
|
2018-11-17 20:34:54 +00:00
|
|
|
LINT_CPP_EXCLUDE += $(wildcard test/js-native-api/??_*/*.cc test/js-native-api/??_*/*.h test/node-api/??_*/*.cc test/node-api/??_*/*.h)
|
2017-07-26 08:27:18 +00:00
|
|
|
# These files were copied more or less verbatim from V8.
|
2017-09-08 11:44:58 +00:00
|
|
|
LINT_CPP_EXCLUDE += src/tracing/trace_event.h src/tracing/trace_event_common.h
|
2015-08-18 18:29:10 +00:00
|
|
|
|
2018-01-23 10:49:25 +00:00
|
|
|
LINT_CPP_FILES = $(filter-out $(LINT_CPP_EXCLUDE), $(wildcard \
|
2020-08-11 13:31:42 +00:00
|
|
|
benchmark/napi/*/*.cc \
|
2018-01-23 10:49:25 +00:00
|
|
|
src/*.c \
|
|
|
|
src/*.cc \
|
|
|
|
src/*.h \
|
|
|
|
src/*/*.c \
|
|
|
|
src/*/*.cc \
|
|
|
|
src/*/*.h \
|
|
|
|
test/addons/*/*.cc \
|
|
|
|
test/addons/*/*.h \
|
|
|
|
test/cctest/*.cc \
|
|
|
|
test/cctest/*.h \
|
2020-02-28 02:54:13 +00:00
|
|
|
test/embedding/*.cc \
|
|
|
|
test/embedding/*.h \
|
2018-11-17 20:34:54 +00:00
|
|
|
test/js-native-api/*/*.cc \
|
|
|
|
test/js-native-api/*/*.h \
|
|
|
|
test/node-api/*/*.cc \
|
|
|
|
test/node-api/*/*.h \
|
2018-01-23 10:49:25 +00:00
|
|
|
tools/icu/*.cc \
|
|
|
|
tools/icu/*.h \
|
2019-04-03 22:29:02 +00:00
|
|
|
tools/code_cache/*.cc \
|
|
|
|
tools/code_cache/*.h \
|
2019-04-18 08:26:48 +00:00
|
|
|
tools/snapshot/*.cc \
|
|
|
|
tools/snapshot/*.h \
|
2018-01-23 10:49:25 +00:00
|
|
|
))
|
|
|
|
|
|
|
|
# Code blocks don't have newline at the end,
|
|
|
|
# and the actual filename is generated so it won't match header guards
|
|
|
|
ADDON_DOC_LINT_FLAGS=-whitespace/ending_newline,-build/header_guard
|
2017-10-22 06:05:26 +00:00
|
|
|
|
2018-07-13 12:19:31 +00:00
|
|
|
format-cpp-build:
|
2018-08-18 21:39:06 +00:00
|
|
|
cd tools/clang-format && $(call available-node,$(run-npm-ci))
|
2018-07-13 12:19:31 +00:00
|
|
|
|
|
|
|
format-cpp-clean:
|
|
|
|
$(RM) -r tools/clang-format/node_modules
|
|
|
|
|
|
|
|
CLANG_FORMAT_START ?= HEAD
|
|
|
|
.PHONY: format-cpp
|
|
|
|
# To format staged changes:
|
|
|
|
# $ make format-cpp
|
|
|
|
# To format HEAD~1...HEAD (latest commit):
|
|
|
|
# $ CLANG_FORMAT_START=`git rev-parse HEAD~1` make format-cpp
|
|
|
|
# To format diff between master and current branch head (master...HEAD):
|
|
|
|
# $ CLANG_FORMAT_START=master make format-cpp
|
|
|
|
format-cpp: ## Format C++ diff from $CLANG_FORMAT_START to current changes
|
|
|
|
ifneq ("","$(wildcard tools/clang-format/node_modules/)")
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Formatting C++ diff from $(CLANG_FORMAT_START)..)
|
2018-07-13 12:19:31 +00:00
|
|
|
@$(PYTHON) tools/clang-format/node_modules/.bin/git-clang-format \
|
|
|
|
--binary=tools/clang-format/node_modules/.bin/clang-format \
|
|
|
|
--style=file \
|
|
|
|
$(CLANG_FORMAT_START) -- \
|
|
|
|
$(LINT_CPP_FILES)
|
|
|
|
else
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info clang-format is not installed.)
|
|
|
|
$(info To install (requires internet access) run: $$ make format-cpp-build)
|
2018-07-13 12:19:31 +00:00
|
|
|
endif
|
|
|
|
|
2019-02-28 18:00:33 +00:00
|
|
|
ifeq ($(V),1)
|
2019-09-20 01:42:37 +00:00
|
|
|
CPPLINT_QUIET =
|
2019-02-28 18:00:33 +00:00
|
|
|
else
|
2019-09-20 01:42:37 +00:00
|
|
|
CPPLINT_QUIET = --quiet
|
2019-02-28 18:00:33 +00:00
|
|
|
endif
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-cpp
|
2020-05-06 15:20:14 +00:00
|
|
|
# Lints the C++ code with cpplint.py and checkimports.py.
|
2017-10-29 06:50:29 +00:00
|
|
|
lint-cpp: tools/.cpplintstamp
|
|
|
|
|
|
|
|
tools/.cpplintstamp: $(LINT_CPP_FILES)
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Running C++ linter...)
|
2018-10-04 05:49:06 +00:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_QUIET) $?
|
2020-06-02 11:21:40 +00:00
|
|
|
@$(PYTHON) tools/checkimports.py $?
|
2017-10-29 06:50:29 +00:00
|
|
|
@touch $@
|
2010-12-02 01:01:19 +00:00
|
|
|
|
2018-12-12 14:53:19 +00:00
|
|
|
.PHONY: lint-addon-docs
|
|
|
|
lint-addon-docs: tools/.doclintstamp
|
|
|
|
|
|
|
|
tools/.doclintstamp: test/addons/.docbuildstamp
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Running C++ linter on addon docs...)
|
2018-10-04 05:49:06 +00:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_QUIET) --filter=$(ADDON_DOC_LINT_FLAGS) \
|
|
|
|
$(LINT_CPP_ADDON_DOC_FILES_GLOB)
|
2018-12-12 14:53:19 +00:00
|
|
|
@touch $@
|
2018-01-23 10:49:25 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
cpplint: lint-cpp
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Please use lint-cpp instead of cpplint)
|
2017-09-08 11:44:58 +00:00
|
|
|
|
2018-07-24 06:00:13 +00:00
|
|
|
.PHONY: lint-py-build
|
|
|
|
# python -m pip install flake8
|
|
|
|
# Try with '--system' is to overcome systems that blindly set '--user'
|
|
|
|
lint-py-build:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(info Pip installing flake8 linter on $(shell $(PYTHON) --version)...)
|
2018-07-24 06:00:13 +00:00
|
|
|
$(PYTHON) -m pip install --upgrade -t tools/pip/site-packages flake8 || \
|
|
|
|
$(PYTHON) -m pip install --upgrade --system -t tools/pip/site-packages flake8
|
|
|
|
|
|
|
|
ifneq ("","$(wildcard tools/pip/site-packages)")
|
|
|
|
.PHONY: lint-py
|
|
|
|
# Lints the Python code with flake8.
|
|
|
|
# Flag the build if there are Python syntax errors or undefined names
|
|
|
|
lint-py:
|
2019-03-25 02:58:29 +00:00
|
|
|
PYTHONPATH=tools/pip $(PYTHON) -m flake8 --count --show-source --statistics .
|
2018-07-24 06:00:13 +00:00
|
|
|
else
|
|
|
|
lint-py:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(warning Python linting with flake8 is not avalible)
|
|
|
|
$(warning Run 'make lint-py-build')
|
2018-07-24 06:00:13 +00:00
|
|
|
endif
|
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint
|
|
|
|
.PHONY: lint-ci
|
2017-12-22 15:53:42 +00:00
|
|
|
ifneq ("","$(wildcard tools/node_modules/eslint/)")
|
2017-11-26 14:41:56 +00:00
|
|
|
lint: ## Run JS, C++, MD and doc linters.
|
2017-04-15 08:23:46 +00:00
|
|
|
@EXIT_STATUS=0 ; \
|
2017-09-08 11:44:58 +00:00
|
|
|
$(MAKE) lint-js || EXIT_STATUS=$$? ; \
|
|
|
|
$(MAKE) lint-cpp || EXIT_STATUS=$$? ; \
|
2018-01-23 10:49:25 +00:00
|
|
|
$(MAKE) lint-addon-docs || EXIT_STATUS=$$? ; \
|
2018-01-31 05:16:19 +00:00
|
|
|
$(MAKE) lint-md || EXIT_STATUS=$$? ; \
|
2017-04-07 19:07:14 +00:00
|
|
|
exit $$EXIT_STATUS
|
2016-07-08 23:22:46 +00:00
|
|
|
CONFLICT_RE=^>>>>>>> [0-9A-Fa-f]+|^<<<<<<< [A-Za-z]+
|
2017-11-12 19:54:28 +00:00
|
|
|
|
|
|
|
# Related CI job: node-test-linter
|
2018-07-24 06:00:13 +00:00
|
|
|
lint-ci: lint-js-ci lint-cpp lint-py lint-md lint-addon-docs
|
2020-10-02 23:12:24 +00:00
|
|
|
@if ! ( grep -IEqrs "$(CONFLICT_RE)" --exclude="error-message.js" benchmark deps doc lib src test tools ) \
|
2020-04-28 19:34:22 +00:00
|
|
|
&& ! ( $(FIND) . -maxdepth 1 -type f | xargs grep -IEqs "$(CONFLICT_RE)" ); then \
|
2016-07-08 23:22:46 +00:00
|
|
|
exit 0 ; \
|
|
|
|
else \
|
|
|
|
echo "" >&2 ; \
|
|
|
|
echo "Conflict marker detected in one or more files. Please fix them first." >&2 ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2016-03-13 23:08:11 +00:00
|
|
|
else
|
2020-10-19 09:18:46 +00:00
|
|
|
lint lint-ci:
|
|
|
|
$(info Linting is not available through the source tarball.)
|
|
|
|
$(info Use the git repo instead: $$ git clone https://github.com/nodejs/node.git)
|
2016-03-10 03:40:54 +00:00
|
|
|
endif
|
2016-03-27 06:12:47 +00:00
|
|
|
|
2018-01-03 13:14:07 +00:00
|
|
|
.PHONY: lint-clean
|
2017-10-29 06:50:29 +00:00
|
|
|
lint-clean:
|
|
|
|
$(RM) tools/.*lintstamp
|
|
|
|
$(RM) .eslintcache
|
2020-08-06 02:26:13 +00:00
|
|
|
|
|
|
|
HAS_DOCKER ?= $(shell which docker > /dev/null 2>&1; [ $$? -eq 0 ] && echo 1 || echo 0)
|
|
|
|
|
|
|
|
ifeq ($(HAS_DOCKER), 1)
|
|
|
|
DOCKER_COMMAND ?= docker run -it -v $(PWD):/node
|
|
|
|
IS_IN_WORKTREE = $(shell grep '^gitdir: ' $(PWD)/.git 2>/dev/null)
|
|
|
|
GIT_WORKTREE_COMMON = $(shell git rev-parse --git-common-dir)
|
|
|
|
DOCKER_COMMAND += $(if $(IS_IN_WORKTREE), -v $(GIT_WORKTREE_COMMON):$(GIT_WORKTREE_COMMON))
|
|
|
|
gen-openssl: ## Generate platform dependent openssl files (requires docker)
|
|
|
|
docker build -t node-openssl-builder deps/openssl/config/
|
|
|
|
$(DOCKER_COMMAND) node-openssl-builder make -C deps/openssl/config
|
|
|
|
else
|
|
|
|
gen-openssl:
|
2020-10-19 09:18:46 +00:00
|
|
|
$(error No docker command, cannot continue)
|
2020-08-06 02:26:13 +00:00
|
|
|
endif
|