2012-01-18 02:02:15 +04:00
|
|
|
-include config.mk
|
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
BUILDTYPE ?= Release
|
2012-01-09 00:17:28 +04:00
|
|
|
PYTHON ?= python
|
2012-04-22 00:40:48 +04:00
|
|
|
DESTDIR ?=
|
2012-08-03 00:35:41 +04:00
|
|
|
SIGN ?=
|
2013-04-23 22:17:09 +04:00
|
|
|
PREFIX ?= /usr/local
|
2015-08-26 13:38:48 +03:00
|
|
|
FLAKY_TESTS ?= run
|
2015-08-26 13:41:16 +03:00
|
|
|
TEST_CI_ARGS ?=
|
2015-08-13 19:14:34 +03:00
|
|
|
STAGINGSERVER ?= node-www
|
2015-06-10 10:05:26 +03:00
|
|
|
OSTYPE := $(shell uname -s | tr '[A-Z]' '[a-z]')
|
2009-12-06 09:35:26 +03:00
|
|
|
|
2016-04-15 06:15:40 +03:00
|
|
|
ifdef JOBS
|
|
|
|
PARALLEL_ARGS = -j $(JOBS)
|
|
|
|
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 07:39:06 +03:00
|
|
|
ifdef QUICKCHECK
|
|
|
|
QUICKCHECK_ARG := --quickcheck
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef ENABLE_V8_TAP
|
2016-06-28 21:35:18 +03: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 07:39:06 +03:00
|
|
|
endif
|
|
|
|
|
2016-03-01 01:44:31 +03: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 07:39:06 +03:00
|
|
|
ifdef DISABLE_V8_I18N
|
2016-03-01 01:44:31 +03:00
|
|
|
V8_TEST_OPTIONS += --noi18n
|
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 07:39:06 +03:00
|
|
|
V8_BUILD_OPTIONS += i18nsupport=off
|
|
|
|
endif
|
|
|
|
|
|
|
|
BUILDTYPE_LOWER := $(shell echo $(BUILDTYPE) | tr '[A-Z]' '[a-z]')
|
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
# Determine EXEEXT
|
2014-10-29 17:43:09 +03:00
|
|
|
EXEEXT := $(shell $(PYTHON) -c \
|
|
|
|
"import sys; print('.exe' if sys.platform == 'win32' else '')")
|
2014-08-31 02:59:05 +04:00
|
|
|
|
2015-08-13 19:14:34 +03:00
|
|
|
NODE_EXE = node$(EXEEXT)
|
2015-11-19 01:40:03 +03:00
|
|
|
NODE ?= ./$(NODE_EXE)
|
2015-08-13 19:14:34 +03:00
|
|
|
NODE_G_EXE = node_g$(EXEEXT)
|
2013-02-12 11:22:12 +04:00
|
|
|
|
2015-08-13 18:30:01 +03:00
|
|
|
# Flags for packaging.
|
|
|
|
BUILD_DOWNLOAD_FLAGS ?= --download=all
|
|
|
|
BUILD_INTL_FLAGS ?= --with-intl=small-icu
|
|
|
|
BUILD_RELEASE_FLAGS ?= $(BUILD_DOWNLOAD_FLAGS) $(BUILD_INTL_FLAGS)
|
|
|
|
|
2012-07-25 03:19:08 +04:00
|
|
|
# Default to verbose builds.
|
|
|
|
# To do quiet/pretty builds, run `make V=` to set V to an empty string,
|
|
|
|
# or set the V environment variable to an empty string.
|
|
|
|
V ?= 1
|
|
|
|
|
2012-01-27 02:45:16 +04: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 15:23:17 +04:00
|
|
|
ifeq ($(BUILDTYPE),Release)
|
2014-08-31 02:59:05 +04:00
|
|
|
all: out/Makefile $(NODE_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
else
|
2014-08-31 02:59:05 +04:00
|
|
|
all: out/Makefile $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
endif
|
|
|
|
|
2011-12-19 03:10:01 +04:00
|
|
|
# The .PHONY is needed to ensure that we recursively use the out/Makefile
|
|
|
|
# to check for changes.
|
2014-08-31 02:59:05 +04:00
|
|
|
.PHONY: $(NODE_EXE) $(NODE_G_EXE)
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_EXE): config.gypi out/Makefile
|
2012-07-25 03:19:08 +04:00
|
|
|
$(MAKE) -C out BUILDTYPE=Release V=$(V)
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Release/$(NODE_EXE) $@
|
2011-12-17 15:23:17 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(NODE_G_EXE): config.gypi out/Makefile
|
2012-07-25 03:19:08 +04:00
|
|
|
$(MAKE) -C out BUILDTYPE=Debug V=$(V)
|
2014-08-31 02:59:05 +04:00
|
|
|
ln -fs out/Debug/$(NODE_EXE) $@
|
2010-10-24 18:15:05 +04:00
|
|
|
|
2013-07-23 02:53:43 +04:00
|
|
|
out/Makefile: common.gypi deps/uv/uv.gyp deps/http_parser/http_parser.gyp deps/zlib/zlib.gyp deps/v8/build/toolchain.gypi deps/v8/build/features.gypi deps/v8/tools/gyp/v8.gyp node.gyp config.gypi
|
2013-11-11 03:15:34 +04:00
|
|
|
$(PYTHON) tools/gyp_node.py -f make
|
2012-09-04 18:03:01 +04:00
|
|
|
|
|
|
|
config.gypi: configure
|
2013-08-10 15:00:51 +04:00
|
|
|
if [ -f $@ ]; then
|
|
|
|
$(error Stale $@, please re-run ./configure)
|
|
|
|
else
|
|
|
|
$(error No $@, please run ./configure first)
|
|
|
|
fi
|
2010-10-24 18:15:05 +04:00
|
|
|
|
2011-12-14 17:00:10 +04:00
|
|
|
install: all
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-12-14 17:00:10 +04:00
|
|
|
|
|
|
|
uninstall:
|
2013-04-23 22:17:09 +04:00
|
|
|
$(PYTHON) tools/install.py $@ '$(DESTDIR)' '$(PREFIX)'
|
2011-11-23 16:19:19 +04:00
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
clean:
|
2015-06-10 10:05:26 +03:00
|
|
|
-rm -rf out/Makefile $(NODE_EXE) $(NODE_G_EXE) out/$(BUILDTYPE)/$(NODE_EXE)
|
2015-10-08 01:40:26 +03:00
|
|
|
@if [ -d out ]; then find out/ -name '*.o' -o -name '*.a' -o -name '*.d' | xargs rm -rf; fi
|
2012-05-03 21:16:25 +04:00
|
|
|
-rm -rf node_modules
|
2015-10-08 01:40:26 +03:00
|
|
|
@if [ -d deps/icu ]; then echo deleting deps/icu; rm -rf deps/icu; fi
|
2015-09-12 22:56:33 +03:00
|
|
|
-rm -f test.tap
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2011-11-15 07:02:44 +04:00
|
|
|
distclean:
|
2011-11-18 05:18:29 +04:00
|
|
|
-rm -rf out
|
2015-11-25 03:17:49 +03:00
|
|
|
-rm -f config.gypi icu_config.gypi config_fips.gypi
|
2012-02-18 00:41:39 +04:00
|
|
|
-rm -f config.mk
|
2015-06-10 10:05:26 +03:00
|
|
|
-rm -rf $(NODE_EXE) $(NODE_G_EXE)
|
2012-05-03 21:16:25 +04:00
|
|
|
-rm -rf node_modules
|
build: i18n: add icu config options
Make "--with-intl=none" the default and add "intl-none" option to
vcbuild.bat.
If icu data is missing print a warning unless either --download=all or
--download=icu is set. If set then automatically download, verify (MD5)
and unpack the ICU data if not already available.
There's a "list" of URLs being used, but right now only the first is
picked up. The logic works something like this:
* If there is no directory deps/icu,
* If no zip file (currently icu4c-54_1-src.zip),
* Download zip file (icu-project.org -> sf.net)
* Verify the MD5 sum of the zipfile
* If bad, print error and exit
* Unpack the zipfile into deps/icu
* If deps/icu now exists, use it, else fail with help text
Add the configuration option "--with-icu-source=..."
Usage:
* --with-icu-source=/path/to/my/other/icu
* --with-icu-source=/path/to/icu54.zip
* --with-icu-source=/path/to/icu54.tgz
* --with-icu-source=http://example.com/icu54.tar.bz2
Add the configuration option "--with-icu-locals=...". Allows choosing
which locales are used in the "small-icu" case.
Example:
configure --with-intl=small-icu --with-icu-locales=tlh,grc,nl
(Also note that as of this writing, neither Klingon nor Ancient Greek
are in upstream CLDR data. Serving suggestion only.)
Don't use hard coded ../../out paths on windows. This was suggested by
@misterdjules as it causes test failures. With this fix, "out" is no
longer created on windows and the following can run properly:
python tools/test.py simple
Reduce space by about 1MB with ICU 54 (over without this patch). Also
trims a few other source files, but only conditional on the exact ICU
version used. This is to future-proof - a file that is unneeded now may
be needed in future ICUs.
Also:
* Update distclean to remove icu related files
* Refactor some code into tools/configure.d/nodedownload.py
* Update docs
* Add test
PR-URL: https://github.com/joyent/node/pull/8719
Fixes: https://github.com/joyent/node/issues/7676#issuecomment-64704230
[trev.norris@gmail.com small change to test's whitespace and logic]
Signed-off-by: Trevor Norris <trev.norris@gmail.com>
2014-11-13 04:13:14 +03:00
|
|
|
-rm -rf deps/icu
|
|
|
|
-rm -rf deps/icu4c*.tgz deps/icu4c*.zip deps/icu-tmp
|
2015-01-13 06:24:32 +03:00
|
|
|
-rm -f $(BINARYTAR).* $(TARBALL).*
|
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 07:39:06 +03:00
|
|
|
-rm -rf deps/v8/testing/gmock
|
|
|
|
-rm -rf deps/v8/testing/gtest
|
2010-10-04 13:11:27 +04:00
|
|
|
|
2015-03-20 01:15:54 +03:00
|
|
|
check: test
|
|
|
|
|
2015-03-19 04:01:45 +03:00
|
|
|
cctest: all
|
|
|
|
@out/$(BUILDTYPE)/$@
|
|
|
|
|
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 07:39:06 +03:00
|
|
|
v8:
|
|
|
|
tools/make-v8.sh v8
|
|
|
|
$(MAKE) -C deps/v8 $(V8_ARCH) $(V8_BUILD_OPTIONS)
|
|
|
|
|
2016-05-13 02:00:09 +03:00
|
|
|
test: all
|
|
|
|
$(MAKE) build-addons
|
|
|
|
$(MAKE) cctest
|
2016-04-27 03:28:01 +03:00
|
|
|
$(PYTHON) tools/test.py --mode=release -J \
|
2016-07-05 19:59:40 +03:00
|
|
|
addons doctool known_issues message pseudo-tty parallel sequential
|
2016-04-27 03:28:01 +03:00
|
|
|
$(MAKE) lint
|
2009-10-04 00:42:03 +04:00
|
|
|
|
2014-12-17 16:30:04 +03:00
|
|
|
test-parallel: all
|
|
|
|
$(PYTHON) tools/test.py --mode=release parallel -J
|
|
|
|
|
2010-12-22 21:24:34 +03:00
|
|
|
test-valgrind: all
|
2014-12-17 16:30:04 +03:00
|
|
|
$(PYTHON) tools/test.py --mode=release --valgrind sequential parallel message
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2015-01-02 19:00:27 +03:00
|
|
|
test/gc/node_modules/weak/build/Release/weakref.node: $(NODE_EXE)
|
2015-06-12 08:12:20 +03:00
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2016-05-09 10:17:06 +03:00
|
|
|
--python="$(PYTHON)" \
|
2012-06-14 02:55:29 +04:00
|
|
|
--directory="$(shell pwd)/test/gc/node_modules/weak" \
|
|
|
|
--nodedir="$(shell pwd)"
|
2012-05-03 21:16:25 +04:00
|
|
|
|
2015-08-18 22:29:59 +03:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
2016-05-09 16:21:09 +03:00
|
|
|
test/addons/.docbuildstamp: tools/doc/addon-verify.js doc/api/addons.md
|
2015-12-24 05:56:03 +03:00
|
|
|
$(RM) -r test/addons/??_*/
|
2016-05-09 16:21:09 +03:00
|
|
|
$(NODE) $<
|
2015-08-18 22:29:59 +03:00
|
|
|
touch $@
|
|
|
|
|
|
|
|
ADDONS_BINDING_GYPS := \
|
2015-12-24 05:56:03 +03:00
|
|
|
$(filter-out test/addons/??_*/binding.gyp, \
|
2015-08-18 22:29:59 +03:00
|
|
|
$(wildcard test/addons/*/binding.gyp))
|
|
|
|
|
2016-06-10 12:33:14 +03:00
|
|
|
ADDONS_BINDING_SOURCES := \
|
|
|
|
$(filter-out test/addons/??_*/*.cc, $(wildcard test/addons/*/*.cc)) \
|
2016-06-10 12:36:42 +03:00
|
|
|
$(filter-out test/addons/??_*/*.h, $(wildcard test/addons/*/*.h))
|
2016-06-10 12:33:14 +03:00
|
|
|
|
2015-08-18 22:29:59 +03:00
|
|
|
# Implicitly depends on $(NODE_EXE), see the build-addons rule for rationale.
|
2016-05-16 19:32:03 +03:00
|
|
|
# Depends on node-gyp package.json so that build-addons is (re)executed when
|
|
|
|
# node-gyp is updated as part of an npm update.
|
|
|
|
test/addons/.buildstamp: deps/npm/node_modules/node-gyp/package.json \
|
2016-06-10 12:33:14 +03:00
|
|
|
$(ADDONS_BINDING_GYPS) $(ADDONS_BINDING_SOURCES) \
|
2016-04-15 22:19:21 +03:00
|
|
|
deps/uv/include/*.h deps/v8/include/*.h \
|
|
|
|
src/node.h src/node_buffer.h src/node_object_wrap.h \
|
2016-05-09 16:21:09 +03:00
|
|
|
test/addons/.docbuildstamp
|
2015-08-18 22:29:59 +03:00
|
|
|
# Cannot use $(wildcard test/addons/*/) here, it's evaluated before
|
|
|
|
# embedded addons have been generated from the documentation.
|
|
|
|
for dirname in test/addons/*/; do \
|
|
|
|
$(NODE) deps/npm/node_modules/node-gyp/bin/node-gyp rebuild \
|
2016-05-09 10:17:06 +03:00
|
|
|
--python="$(PYTHON)" \
|
2015-08-18 22:29:59 +03:00
|
|
|
--directory="$$PWD/$$dirname" \
|
2016-03-01 04:08:36 +03:00
|
|
|
--nodedir="$$PWD" || exit 1 ; \
|
2015-08-18 22:29:59 +03:00
|
|
|
done
|
|
|
|
touch $@
|
|
|
|
|
|
|
|
# .buildstamp and .docbuildstamp need $(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 and .docbuildstamp are out of date and need a rebuild.
|
|
|
|
# Just goes to show that recursive make really is harmful...
|
2016-05-16 19:32:03 +03:00
|
|
|
# TODO(bnoordhuis) Force rebuild after gyp update.
|
2015-08-18 22:29:59 +03:00
|
|
|
build-addons: $(NODE_EXE) test/addons/.buildstamp
|
2014-01-19 02:49:18 +04:00
|
|
|
|
2013-10-23 15:42:53 +04:00
|
|
|
test-gc: all test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 21:16:25 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release gc
|
|
|
|
|
2015-08-18 22:29:59 +03:00
|
|
|
test-build: | all build-addons
|
2014-01-19 02:49:18 +04:00
|
|
|
|
|
|
|
test-all: test-build test/gc/node_modules/weak/build/Release/weakref.node
|
2012-05-03 21:16:25 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-all-valgrind: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug,release --valgrind
|
2010-12-22 21:24:34 +03:00
|
|
|
|
2016-06-15 15:42:21 +03:00
|
|
|
CI_NATIVE_SUITES := addons
|
|
|
|
CI_JS_SUITES := doctool known_issues message parallel pseudo-tty sequential
|
|
|
|
|
|
|
|
# Build and test addons without building anything else
|
|
|
|
test-ci-native: | test/addons/.buildstamp
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
|
|
|
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES)
|
|
|
|
|
|
|
|
# This target should not use a native compiler at all
|
|
|
|
test-ci-js:
|
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
|
|
|
$(TEST_CI_ARGS) $(CI_JS_SUITES)
|
|
|
|
|
2015-08-18 22:29:59 +03:00
|
|
|
test-ci: | build-addons
|
2016-04-15 06:15:40 +03:00
|
|
|
$(PYTHON) tools/test.py $(PARALLEL_ARGS) -p tap --logfile test.tap \
|
|
|
|
--mode=release --flaky-tests=$(FLAKY_TESTS) \
|
2016-06-15 15:42:21 +03:00
|
|
|
$(TEST_CI_ARGS) $(CI_NATIVE_SUITES) $(CI_JS_SUITES)
|
2015-01-13 01:40:51 +03:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-release: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=release
|
2010-03-03 00:18:59 +03:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-debug: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py --mode=debug
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-message: test-build
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py message
|
2010-06-19 05:14:06 +04:00
|
|
|
|
2015-03-19 04:01:45 +03:00
|
|
|
test-simple: | cctest # Depends on 'all'.
|
2014-12-17 16:30:04 +03:00
|
|
|
$(PYTHON) tools/test.py parallel sequential
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2015-02-27 02:00:07 +03:00
|
|
|
test-pummel: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py pummel
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2010-11-02 02:03:32 +03:00
|
|
|
test-internet: all
|
2012-01-09 00:17:28 +04:00
|
|
|
$(PYTHON) tools/test.py internet
|
2010-02-25 09:36:17 +03:00
|
|
|
|
2014-01-14 05:24:14 +04:00
|
|
|
test-debugger: all
|
|
|
|
$(PYTHON) tools/test.py debugger
|
|
|
|
|
2016-03-02 20:12:47 +03:00
|
|
|
test-known-issues: all
|
2016-05-04 06:51:41 +03:00
|
|
|
$(PYTHON) tools/test.py known_issues
|
2016-03-02 20:12:47 +03:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
test-npm: $(NODE_EXE)
|
2015-06-15 19:10:44 +03:00
|
|
|
NODE=$(NODE) tools/test-npm.sh
|
2011-12-17 06:04:39 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
test-npm-publish: $(NODE_EXE)
|
2015-06-12 08:12:20 +03:00
|
|
|
npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js
|
2011-07-08 21:40:35 +04:00
|
|
|
|
2014-01-19 02:49:18 +04:00
|
|
|
test-addons: test-build
|
|
|
|
$(PYTHON) tools/test.py --mode=release addons
|
|
|
|
|
2014-07-23 05:03:10 +04:00
|
|
|
test-timers:
|
|
|
|
$(MAKE) --directory=tools faketime
|
|
|
|
$(PYTHON) tools/test.py --mode=release timers
|
|
|
|
|
|
|
|
test-timers-clean:
|
|
|
|
$(MAKE) --directory=tools clean
|
|
|
|
|
2016-03-14 02:08:11 +03:00
|
|
|
|
|
|
|
ifneq ("","$(wildcard deps/v8/tools/run-tests.py)")
|
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 07:39:06 +03:00
|
|
|
test-v8:
|
|
|
|
# note: performs full test unless QUICKCHECK is specified
|
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \
|
2016-03-01 01:44:31 +03:00
|
|
|
--mode=$(BUILDTYPE_LOWER) $(V8_TEST_OPTIONS) $(QUICKCHECK_ARG) \
|
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 07:39:06 +03:00
|
|
|
--no-presubmit \
|
|
|
|
--shell-dir=$(PWD)/deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) \
|
|
|
|
$(TAP_V8)
|
|
|
|
|
|
|
|
test-v8-intl:
|
|
|
|
# note: performs full test unless QUICKCHECK is specified
|
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) \
|
|
|
|
--mode=$(BUILDTYPE_LOWER) --no-presubmit $(QUICKCHECK_ARG) \
|
|
|
|
--shell-dir=deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) intl \
|
|
|
|
$(TAP_V8_INTL)
|
|
|
|
|
|
|
|
test-v8-benchmarks:
|
|
|
|
deps/v8/tools/run-tests.py --arch=$(V8_ARCH) --mode=$(BUILDTYPE_LOWER) \
|
|
|
|
--download-data $(QUICKCHECK_ARG) --no-presubmit \
|
|
|
|
--shell-dir=deps/v8/out/$(V8_ARCH).$(BUILDTYPE_LOWER) benchmarks \
|
|
|
|
$(TAP_V8_BENCHMARKS)
|
|
|
|
|
|
|
|
test-v8-all: test-v8 test-v8-intl test-v8-benchmarks
|
|
|
|
# runs all v8 tests
|
2016-03-14 02:08:11 +03:00
|
|
|
else
|
|
|
|
test-v8 test-v8-intl test-v8-benchmarks test-v8-all:
|
|
|
|
@echo "Testing v8 is not available through the source tarball."
|
|
|
|
@echo "Use the git repo instead:" \
|
|
|
|
"$ git clone https://github.com/nodejs/node.git"
|
|
|
|
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 07:39:06 +03:00
|
|
|
|
2016-04-21 01:12:40 +03:00
|
|
|
apidoc_sources = $(wildcard doc/api/*.md)
|
|
|
|
apidocs = $(addprefix out/,$(apidoc_sources:.md=.html)) \
|
|
|
|
$(addprefix out/,$(apidoc_sources:.md=.json))
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2014-02-14 03:52:01 +04:00
|
|
|
apidoc_dirs = out/doc out/doc/api/ out/doc/api/assets
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
apiassets = $(subst api_assets,api/assets,$(addprefix out/,$(wildcard doc/api_assets/*)))
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2015-11-19 01:40:03 +03:00
|
|
|
doc-only: $(apidoc_dirs) $(apiassets) $(apidocs) tools/doc/
|
|
|
|
|
|
|
|
doc: $(NODE_EXE) doc-only
|
2010-11-14 01:57:35 +03:00
|
|
|
|
2010-11-15 02:50:14 +03:00
|
|
|
$(apidoc_dirs):
|
|
|
|
mkdir -p $@
|
2010-10-29 02:10:20 +04:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
out/doc/api/assets/%: doc/api_assets/% out/doc/api/assets/
|
2010-11-15 02:50:14 +03:00
|
|
|
cp $< $@
|
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
out/doc/%: doc/%
|
2012-02-14 02:47:50 +04:00
|
|
|
cp -r $< $@
|
2010-11-16 07:23:12 +03:00
|
|
|
|
2016-05-21 00:16:47 +03:00
|
|
|
# check if ./node is actually set, else use user pre-installed binary
|
|
|
|
gen-json = tools/doc/generate.js --format=json $< > $@
|
2015-11-19 01:40:03 +03:00
|
|
|
out/doc/api/%.json: doc/api/%.md
|
2016-05-21 00:16:47 +03:00
|
|
|
[ -x $(NODE) ] && $(NODE) $(gen-json) || node $(gen-json)
|
2012-02-27 22:59:35 +04:00
|
|
|
|
2016-05-21 00:16:47 +03:00
|
|
|
# check if ./node is actually set, else use user pre-installed binary
|
|
|
|
gen-html = tools/doc/generate.js --node-version=$(FULLVERSION) --format=html --template=doc/template.html $< > $@
|
2015-11-19 01:40:03 +03:00
|
|
|
out/doc/api/%.html: doc/api/%.md
|
2016-05-21 00:16:47 +03:00
|
|
|
[ -x $(NODE) ] && $(NODE) $(gen-html) || node $(gen-html)
|
2010-11-15 02:50:14 +03:00
|
|
|
|
2011-08-24 01:08:53 +04:00
|
|
|
docopen: out/doc/api/all.html
|
|
|
|
-google-chrome out/doc/api/all.html
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2009-12-30 04:45:15 +03:00
|
|
|
docclean:
|
2011-08-24 01:08:53 +04:00
|
|
|
-rm -rf out/doc
|
2009-12-30 04:45:15 +03:00
|
|
|
|
2016-06-15 15:42:21 +03:00
|
|
|
build-ci:
|
2015-07-08 17:11:24 +03:00
|
|
|
$(PYTHON) ./configure $(CONFIG_FLAGS)
|
|
|
|
$(MAKE)
|
2016-06-15 15:42:21 +03:00
|
|
|
|
|
|
|
run-ci: build-ci
|
2015-07-08 17:11:24 +03:00
|
|
|
$(MAKE) test-ci
|
|
|
|
|
2013-06-04 04:05:56 +04:00
|
|
|
RAWVER=$(shell $(PYTHON) tools/getnodeversion.py)
|
|
|
|
VERSION=v$(RAWVER)
|
2015-06-10 10:05:26 +03: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-14 02:53:26 +03:00
|
|
|
FULLVERSION=$(VERSION)
|
2015-06-10 10:05:26 +03: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 15:22:23 +03:00
|
|
|
RELEASE=$(shell sed -ne 's/\#define NODE_VERSION_IS_RELEASE \([01]\)/\1/p' src/node_version.h)
|
2012-08-04 23:07:17 +04:00
|
|
|
PLATFORM=$(shell uname | tr '[:upper:]' '[:lower:]')
|
2015-01-14 02:53:26 +03:00
|
|
|
NPMVERSION=v$(shell cat deps/npm/package.json | grep '"version"' | sed 's/^[^:]*: "\([^"]*\)",.*/\1/')
|
2015-06-10 10:05:26 +03:00
|
|
|
|
2016-04-20 20:12:14 +03:00
|
|
|
UNAME_M=$(shell uname -m)
|
|
|
|
ifeq ($(findstring x86_64,$(UNAME_M)),x86_64)
|
2012-08-10 03:30:41 +04:00
|
|
|
DESTCPU ?= x64
|
2012-08-04 23:39:54 +04:00
|
|
|
else
|
2016-04-20 20:12:14 +03: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)
|
|
|
|
DESTCPU ?= aarch64
|
|
|
|
else
|
|
|
|
ifeq ($(findstring powerpc,$(shell uname -p)),powerpc)
|
|
|
|
DESTCPU ?= ppc64
|
|
|
|
else
|
2015-06-10 10:05:26 +03:00
|
|
|
DESTCPU ?= x86
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2016-04-20 20:12:14 +03:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
2012-08-10 03:30:41 +04:00
|
|
|
ifeq ($(DESTCPU),x64)
|
|
|
|
ARCH=x64
|
|
|
|
else
|
2012-11-27 09:03:36 +04:00
|
|
|
ifeq ($(DESTCPU),arm)
|
|
|
|
ARCH=arm
|
|
|
|
else
|
2016-02-11 05:57:20 +03:00
|
|
|
ifeq ($(DESTCPU),aarch64)
|
|
|
|
ARCH=arm64
|
|
|
|
else
|
2015-07-07 21:15:03 +03:00
|
|
|
ifeq ($(DESTCPU),ppc64)
|
|
|
|
ARCH=ppc64
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),ppc)
|
|
|
|
ARCH=ppc
|
|
|
|
else
|
2016-03-29 00:03:06 +03:00
|
|
|
ifeq ($(DESTCPU),s390)
|
|
|
|
ARCH=s390
|
|
|
|
else
|
|
|
|
ifeq ($(DESTCPU),s390x)
|
|
|
|
ARCH=s390x
|
|
|
|
else
|
2012-08-10 03:30:41 +04:00
|
|
|
ARCH=x86
|
2012-08-04 23:39:54 +04:00
|
|
|
endif
|
2012-11-27 09:03:36 +04:00
|
|
|
endif
|
2015-07-07 21:15:03 +03:00
|
|
|
endif
|
|
|
|
endif
|
2016-02-11 05:57:20 +03:00
|
|
|
endif
|
2016-03-29 00:03:06 +03:00
|
|
|
endif
|
|
|
|
endif
|
2015-06-10 10:05:26 +03: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 07:39:06 +03: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 10:05:26 +03: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 10:51:00 +04:00
|
|
|
endif
|
2015-06-10 10:05:26 +03:00
|
|
|
ifeq ($(DESTCPU),ia32)
|
|
|
|
override DESTCPU=x86
|
|
|
|
endif
|
|
|
|
|
2015-08-13 19:14:34 +03:00
|
|
|
TARNAME=node-$(FULLVERSION)
|
2015-01-13 04:51:34 +03:00
|
|
|
TARBALL=$(TARNAME).tar
|
2016-01-11 22:54:33 +03:00
|
|
|
# Custom user-specified variation, use it directly
|
|
|
|
ifdef VARIATION
|
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)-$(VARIATION)
|
|
|
|
else
|
2012-08-04 23:07:17 +04:00
|
|
|
BINARYNAME=$(TARNAME)-$(PLATFORM)-$(ARCH)
|
2016-01-11 22:54:33 +03:00
|
|
|
endif
|
2015-01-13 04:51:34 +03:00
|
|
|
BINARYTAR=$(BINARYNAME).tar
|
2015-06-10 10:05:26 +03:00
|
|
|
# OSX doesn't have xz installed by default, http://macpkg.sourceforge.net/
|
2015-01-13 04:51:34 +03:00
|
|
|
XZ=$(shell which xz > /dev/null 2>&1; echo $$?)
|
2015-04-15 03:49:29 +03:00
|
|
|
XZ_COMPRESSION ?= 9
|
2015-06-10 10:05:26 +03:00
|
|
|
PKG=$(TARNAME).pkg
|
2015-03-11 21:45:57 +03:00
|
|
|
PACKAGEMAKER ?= /Developer/Applications/Utilities/PackageMaker.app/Contents/MacOS/PackageMaker
|
2011-11-21 07:22:30 +04:00
|
|
|
PKGDIR=out/dist-osx
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
release-only:
|
2016-05-14 00:24:33 +03:00
|
|
|
@if `grep -q REPLACEME doc/api/*.md`; then \
|
|
|
|
echo 'Please update Added: tags in the documentation first.' ; \
|
|
|
|
exit 1 ; \
|
|
|
|
fi
|
2012-08-05 02:34:04 +04:00
|
|
|
@if [ "$(shell git status --porcelain | egrep -v '^\?\? ')" = "" ]; then \
|
|
|
|
exit 0 ; \
|
|
|
|
else \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "" >&2 ; \
|
2012-08-05 02:34:04 +04: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 10:05:26 +03:00
|
|
|
@if [ "$(DISTTYPE)" != "release" -o "$(RELEASE)" = "1" ]; then \
|
2012-08-05 02:34:04 +04:00
|
|
|
exit 0; \
|
|
|
|
else \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "" >&2 ; \
|
2012-08-10 03:30:41 +04:00
|
|
|
echo "#NODE_VERSION_IS_RELEASE is set to $(RELEASE)." >&2 ; \
|
2015-01-18 09:41:37 +03:00
|
|
|
echo "Did you remember to update src/node_version.h?" >&2 ; \
|
|
|
|
echo "" >&2 ; \
|
2012-08-05 02:34:04 +04:00
|
|
|
exit 1 ; \
|
|
|
|
fi
|
|
|
|
|
|
|
|
$(PKG): release-only
|
2012-02-23 02:03:22 +04:00
|
|
|
rm -rf $(PKGDIR)
|
|
|
|
rm -rf out/deps out/Release
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--dest-cpu=x64 \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2013-05-03 00:54:37 +04:00
|
|
|
$(MAKE) install V=$(V) DESTDIR=$(PKGDIR)
|
2015-06-10 10:05:26 +03:00
|
|
|
SIGN="$(CODESIGN_CERT)" PKGDIR="$(PKGDIR)" bash tools/osx-codesign.sh
|
|
|
|
cat tools/osx-pkg.pmdoc/index.xml.tmpl \
|
2015-08-13 19:14:34 +03:00
|
|
|
| sed -E "s/\\{nodeversion\\}/$(FULLVERSION)/g" \
|
2015-06-10 10:05:26 +03:00
|
|
|
| sed -E "s/\\{npmversion\\}/$(NPMVERSION)/g" \
|
|
|
|
> tools/osx-pkg.pmdoc/index.xml
|
2015-03-11 21:45:57 +03:00
|
|
|
$(PACKAGEMAKER) \
|
2015-09-04 08:41:21 +03:00
|
|
|
--id "org.nodejs.pkg" \
|
2011-11-21 07:22:30 +04:00
|
|
|
--doc tools/osx-pkg.pmdoc \
|
|
|
|
--out $(PKG)
|
2015-06-10 10:05:26 +03:00
|
|
|
SIGN="$(PRODUCTSIGN_CERT)" PKG="$(PKG)" bash tools/osx-productsign.sh
|
|
|
|
|
|
|
|
pkg: $(PKG)
|
|
|
|
|
|
|
|
pkg-upload: pkg
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 node-$(FULLVERSION).pkg
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p node-$(FULLVERSION).pkg $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).pkg.done"
|
2011-11-12 02:31:15 +04:00
|
|
|
|
2014-08-31 02:59:05 +04:00
|
|
|
$(TARBALL): release-only $(NODE_EXE) doc
|
2015-02-26 03:08:16 +03:00
|
|
|
git checkout-index -a -f --prefix=$(TARNAME)/
|
2012-06-07 02:01:31 +04:00
|
|
|
mkdir -p $(TARNAME)/doc/api
|
2015-08-13 19:14:34 +03:00
|
|
|
cp doc/node.1 $(TARNAME)/doc/node.1
|
2012-06-07 02:01:31 +04:00
|
|
|
cp -r out/doc/api/* $(TARNAME)/doc/api/
|
2016-03-14 02:08:11 +03:00
|
|
|
rm -rf $(TARNAME)/deps/v8/{test,samples,tools/profviz,tools/run-tests.py}
|
2012-02-14 02:47:50 +04:00
|
|
|
rm -rf $(TARNAME)/doc/images # too big
|
2015-02-26 03:08:16 +03:00
|
|
|
rm -rf $(TARNAME)/deps/uv/{docs,samples,test}
|
2016-03-14 02:08:11 +03:00
|
|
|
rm -rf $(TARNAME)/deps/openssl/openssl/{doc,demos,test}
|
2015-01-13 04:51:34 +03:00
|
|
|
rm -rf $(TARNAME)/deps/zlib/contrib # too big, unused
|
2016-03-14 02:08:11 +03:00
|
|
|
rm -rf $(TARNAME)/.{editorconfig,git*,mailmap}
|
|
|
|
rm -rf $(TARNAME)/tools/{eslint,eslint-rules,osx-pkg.pmdoc,pkgsrc}
|
|
|
|
rm -rf $(TARNAME)/tools/{osx-*,license-builder.sh,cpplint.py}
|
2016-04-22 17:21:34 +03:00
|
|
|
rm -rf $(TARNAME)/test*.tap
|
2016-03-14 02:08:11 +03:00
|
|
|
find $(TARNAME)/ -name ".eslint*" -maxdepth 2 | xargs rm
|
2012-06-11 19:18:30 +04:00
|
|
|
find $(TARNAME)/ -type l | xargs rm # annoying on windows
|
2010-05-14 02:54:50 +04:00
|
|
|
tar -cf $(TARNAME).tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(TARNAME).tar > $(TARNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 03:49:29 +03:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME).tar > $(TARNAME).tar.xz
|
2015-01-13 04:51:34 +03:00
|
|
|
endif
|
|
|
|
rm $(TARNAME).tar
|
2009-10-03 23:46:59 +04:00
|
|
|
|
2012-08-04 23:12:22 +04:00
|
|
|
tar: $(TARBALL)
|
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
tar-upload: tar
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 node-$(FULLVERSION).tar.gz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p node-$(FULLVERSION).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.gz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 node-$(FULLVERSION).tar.xz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p node-$(FULLVERSION).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION).tar.xz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
doc-upload: tar
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod -R ug=rw-x+X,o=r+X out/doc/
|
|
|
|
scp -pr out/doc/ $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs/
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/docs.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
|
2016-03-31 20:23:42 +03:00
|
|
|
$(TARBALL)-headers: release-only
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2015-06-30 09:57:47 +03:00
|
|
|
HEADERS_ONLY=1 $(PYTHON) tools/install.py install '$(TARNAME)' '/'
|
2016-03-31 20:23:42 +03:00
|
|
|
find $(TARNAME)/ -type l | xargs rm -f
|
2015-06-14 13:23:43 +03:00
|
|
|
tar -cf $(TARNAME)-headers.tar $(TARNAME)
|
|
|
|
rm -rf $(TARNAME)
|
|
|
|
gzip -c -f -9 $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(TARNAME)-headers.tar > $(TARNAME)-headers.tar.xz
|
|
|
|
endif
|
|
|
|
rm $(TARNAME)-headers.tar
|
|
|
|
|
|
|
|
tar-headers: $(TARBALL)-headers
|
|
|
|
|
|
|
|
tar-headers-upload: tar-headers
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.gz
|
2015-08-31 10:03:26 +03: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"
|
2015-06-14 13:23:43 +03:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 $(TARNAME)-headers.tar.xz
|
2015-08-31 10:03:26 +03: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 13:23:43 +03:00
|
|
|
endif
|
|
|
|
|
2012-08-05 02:34:04 +04:00
|
|
|
$(BINARYTAR): release-only
|
2012-08-04 23:07:17 +04:00
|
|
|
rm -rf $(BINARYNAME)
|
|
|
|
rm -rf out/deps out/Release
|
2015-01-18 09:41:37 +03:00
|
|
|
$(PYTHON) ./configure \
|
|
|
|
--prefix=/ \
|
|
|
|
--dest-cpu=$(DESTCPU) \
|
|
|
|
--tag=$(TAG) \
|
|
|
|
--release-urlbase=$(RELEASE_URLBASE) \
|
2015-08-13 18:30:01 +03:00
|
|
|
$(CONFIG_FLAGS) $(BUILD_RELEASE_FLAGS)
|
2012-08-04 23:07:17 +04:00
|
|
|
$(MAKE) install DESTDIR=$(BINARYNAME) V=$(V) PORTABLE=1
|
|
|
|
cp README.md $(BINARYNAME)
|
|
|
|
cp LICENSE $(BINARYNAME)
|
2015-01-14 05:16:16 +03:00
|
|
|
cp CHANGELOG.md $(BINARYNAME)
|
2012-08-04 23:07:17 +04:00
|
|
|
tar -cf $(BINARYNAME).tar $(BINARYNAME)
|
|
|
|
rm -rf $(BINARYNAME)
|
2015-01-13 04:51:34 +03:00
|
|
|
gzip -c -f -9 $(BINARYNAME).tar > $(BINARYNAME).tar.gz
|
|
|
|
ifeq ($(XZ), 0)
|
2015-04-15 03:49:29 +03:00
|
|
|
xz -c -f -$(XZ_COMPRESSION) $(BINARYNAME).tar > $(BINARYNAME).tar.xz
|
2015-01-13 04:51:34 +03:00
|
|
|
endif
|
|
|
|
rm $(BINARYNAME).tar
|
2012-08-04 23:07:17 +04:00
|
|
|
|
2012-08-04 23:12:37 +04:00
|
|
|
binary: $(BINARYTAR)
|
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
binary-upload: binary
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh $(STAGINGSERVER) "mkdir -p nodejs/$(DISTTYPEDIR)/$(FULLVERSION)"
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.gz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
ifeq ($(XZ), 0)
|
2015-08-31 10:33:22 +03:00
|
|
|
chmod 664 node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -p node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz $(STAGINGSERVER):nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz
|
|
|
|
ssh $(STAGINGSERVER) "touch nodejs/$(DISTTYPEDIR)/$(FULLVERSION)/node-$(FULLVERSION)-$(OSTYPE)-$(ARCH).tar.xz.done"
|
2015-06-10 10:05:26 +03:00
|
|
|
endif
|
2013-06-04 04:05:56 +04:00
|
|
|
|
2015-02-27 02:00:07 +03:00
|
|
|
haswrk=$(shell which wrk > /dev/null 2>&1; echo $$?)
|
|
|
|
wrk:
|
|
|
|
ifneq ($(haswrk), 0)
|
2015-02-27 05:37:46 +03:00
|
|
|
@echo "please install wrk before proceeding. More information can be found in benchmark/README.md." >&2
|
2015-02-27 02:00:07 +03:00
|
|
|
@exit 1
|
|
|
|
endif
|
2013-02-14 00:19:08 +04:00
|
|
|
|
2013-02-12 11:22:12 +04:00
|
|
|
bench-net: all
|
|
|
|
@$(NODE) benchmark/common.js net
|
|
|
|
|
2013-02-20 04:57:59 +04:00
|
|
|
bench-crypto: all
|
|
|
|
@$(NODE) benchmark/common.js crypto
|
|
|
|
|
2013-02-12 11:22:12 +04:00
|
|
|
bench-tls: all
|
|
|
|
@$(NODE) benchmark/common.js tls
|
|
|
|
|
2013-02-14 00:20:36 +04:00
|
|
|
bench-http: wrk all
|
2013-02-12 11:22:12 +04:00
|
|
|
@$(NODE) benchmark/common.js http
|
|
|
|
|
|
|
|
bench-fs: all
|
|
|
|
@$(NODE) benchmark/common.js fs
|
|
|
|
|
|
|
|
bench-misc: all
|
|
|
|
@$(MAKE) -C benchmark/misc/function_call/
|
|
|
|
@$(NODE) benchmark/common.js misc
|
|
|
|
|
|
|
|
bench-array: all
|
|
|
|
@$(NODE) benchmark/common.js arrays
|
|
|
|
|
|
|
|
bench-buffer: all
|
|
|
|
@$(NODE) benchmark/common.js buffers
|
|
|
|
|
2015-01-24 02:56:04 +03:00
|
|
|
bench-url: all
|
|
|
|
@$(NODE) benchmark/common.js url
|
|
|
|
|
|
|
|
bench-events: all
|
|
|
|
@$(NODE) benchmark/common.js events
|
|
|
|
|
2015-11-22 12:08:45 +03:00
|
|
|
bench-util: all
|
|
|
|
@$(NODE) benchmark/common.js util
|
|
|
|
|
2016-01-29 16:18:27 +03:00
|
|
|
bench-dgram: all
|
|
|
|
@$(NODE) benchmark/common.js dgram
|
|
|
|
|
|
|
|
bench-all: bench bench-misc bench-array bench-buffer bench-url bench-events bench-dgram bench-util
|
2013-02-14 02:18:27 +04:00
|
|
|
|
|
|
|
bench: bench-net bench-http bench-fs bench-tls
|
2013-02-12 11:22:12 +04:00
|
|
|
|
2016-03-27 09:12:47 +03:00
|
|
|
bench-ci: bench
|
|
|
|
|
2013-02-12 11:22:12 +04:00
|
|
|
bench-http-simple:
|
2015-01-18 09:41:37 +03:00
|
|
|
benchmark/http_simple_bench.sh
|
2010-10-14 03:20:24 +04:00
|
|
|
|
2010-10-15 21:05:22 +04:00
|
|
|
bench-idle:
|
2015-06-12 08:12:20 +03:00
|
|
|
$(NODE) benchmark/idle_server.js &
|
2010-10-15 21:05:22 +04:00
|
|
|
sleep 1
|
2015-06-12 08:12:20 +03:00
|
|
|
$(NODE) benchmark/idle_clients.js &
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
jslint:
|
2016-03-10 06:40:54 +03:00
|
|
|
$(NODE) tools/jslint.js -J benchmark lib src test tools/doc \
|
|
|
|
tools/eslint-rules tools/jslint.js
|
|
|
|
|
|
|
|
jslint-ci:
|
2016-04-15 06:15:40 +03:00
|
|
|
$(NODE) tools/jslint.js $(PARALLEL_ARGS) -f tap -o test-eslint.tap \
|
|
|
|
benchmark lib src test tools/doc \
|
|
|
|
tools/eslint-rules tools/jslint.js
|
2010-10-15 21:05:22 +04:00
|
|
|
|
2013-07-31 14:54:06 +04:00
|
|
|
CPPLINT_EXCLUDE ?=
|
2013-08-01 14:33:33 +04:00
|
|
|
CPPLINT_EXCLUDE += src/node_root_certs.h
|
2013-07-31 14:54:06 +04:00
|
|
|
CPPLINT_EXCLUDE += src/queue.h
|
2013-08-01 14:33:33 +04:00
|
|
|
CPPLINT_EXCLUDE += src/tree.h
|
2015-12-24 05:56:03 +03:00
|
|
|
CPPLINT_EXCLUDE += $(wildcard test/addons/??_*/*.cc test/addons/??_*/*.h)
|
2015-08-18 21:29:10 +03:00
|
|
|
|
|
|
|
CPPLINT_FILES = $(filter-out $(CPPLINT_EXCLUDE), $(wildcard \
|
|
|
|
src/*.c \
|
|
|
|
src/*.cc \
|
|
|
|
src/*.h \
|
|
|
|
test/addons/*/*.cc \
|
|
|
|
test/addons/*/*.h \
|
|
|
|
tools/icu/*.cc \
|
|
|
|
tools/icu/*.h \
|
|
|
|
))
|
2013-07-31 14:54:06 +04:00
|
|
|
|
2010-12-02 04:01:19 +03:00
|
|
|
cpplint:
|
2013-07-31 14:54:06 +04:00
|
|
|
@$(PYTHON) tools/cpplint.py $(CPPLINT_FILES)
|
2016-04-07 21:56:05 +03:00
|
|
|
@$(PYTHON) tools/check-imports.py
|
2010-12-02 04:01:19 +03:00
|
|
|
|
2016-03-14 02:08:11 +03:00
|
|
|
ifneq ("","$(wildcard tools/eslint/bin/eslint.js)")
|
2010-12-02 04:01:19 +03:00
|
|
|
lint: jslint cpplint
|
2016-03-10 06:40:54 +03:00
|
|
|
lint-ci: jslint-ci cpplint
|
2016-03-14 02:08:11 +03:00
|
|
|
else
|
|
|
|
lint:
|
|
|
|
@echo "Linting is not available through the source tarball."
|
|
|
|
@echo "Use the git repo instead:" \
|
|
|
|
"$ git clone https://github.com/nodejs/node.git"
|
2010-12-02 03:35:46 +03:00
|
|
|
|
2016-03-27 09:12:47 +03:00
|
|
|
lint-ci: lint
|
2016-03-10 06:40:54 +03:00
|
|
|
endif
|
2016-03-27 09:12:47 +03:00
|
|
|
|
2015-03-19 04:01:45 +03:00
|
|
|
.PHONY: lint cpplint jslint bench clean docopen docclean doc dist distclean \
|
|
|
|
check uninstall install install-includes install-bin all staticlib \
|
|
|
|
dynamiclib test test-all test-addons build-addons website-upload pkg \
|
|
|
|
blog blogclean tar binary release-only bench-http-simple bench-idle \
|
|
|
|
bench-all bench bench-misc bench-array bench-buffer bench-net \
|
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 07:39:06 +03:00
|
|
|
bench-http bench-fs bench-tls cctest run-ci test-v8 test-v8-intl \
|
2015-11-19 01:40:03 +03:00
|
|
|
test-v8-benchmarks test-v8-all v8 lint-ci bench-ci jslint-ci doc-only \
|
2016-06-15 15:42:21 +03:00
|
|
|
$(TARBALL)-headers test-ci test-ci-native test-ci-js build-ci
|