2017-11-13 18:59:11 +03:00
|
|
|
@if not defined DEBUG_HELPER @ECHO OFF
|
2011-08-24 10:14:56 +04:00
|
|
|
|
|
|
|
if /i "%1"=="help" goto help
|
|
|
|
if /i "%1"=="--help" goto help
|
|
|
|
if /i "%1"=="-help" goto help
|
|
|
|
if /i "%1"=="/help" goto help
|
|
|
|
if /i "%1"=="?" goto help
|
|
|
|
if /i "%1"=="-?" goto help
|
|
|
|
if /i "%1"=="--?" goto help
|
|
|
|
if /i "%1"=="/?" goto help
|
|
|
|
|
2018-03-12 06:09:14 +03:00
|
|
|
cd %~dp0
|
|
|
|
|
2011-08-24 10:14:56 +04:00
|
|
|
@rem Process arguments.
|
2012-02-23 16:25:20 +04:00
|
|
|
set config=Release
|
2011-08-24 10:14:56 +04:00
|
|
|
set target=Build
|
2017-02-28 14:41:03 +03:00
|
|
|
set target_arch=x64
|
2018-06-06 19:22:50 +03:00
|
|
|
set ltcg=
|
2018-07-12 00:25:18 +03:00
|
|
|
set pch=1
|
2017-06-25 20:42:05 +03:00
|
|
|
set target_env=
|
2011-08-24 10:14:56 +04:00
|
|
|
set noprojgen=
|
2018-06-07 19:26:02 +03:00
|
|
|
set projgen=
|
2011-08-27 02:04:47 +04:00
|
|
|
set nobuild=
|
2016-12-06 23:52:59 +03:00
|
|
|
set sign=
|
2015-05-08 21:56:13 +03:00
|
|
|
set nosnapshot=
|
2016-08-10 12:47:46 +03:00
|
|
|
set cctest_args=
|
2011-08-27 02:04:47 +04:00
|
|
|
set test_args=
|
2016-03-24 20:53:42 +03:00
|
|
|
set package=
|
2011-09-15 01:51:49 +04:00
|
|
|
set msi=
|
2015-06-10 10:05:26 +03:00
|
|
|
set upload=
|
2012-04-04 20:06:00 +04:00
|
|
|
set licensertf=
|
2017-09-08 14:44:58 +03:00
|
|
|
set lint_js=
|
|
|
|
set lint_cpp=
|
2018-03-28 22:16:47 +03:00
|
|
|
set lint_md=
|
|
|
|
set lint_md_build=
|
2012-06-12 03:23:17 +04:00
|
|
|
set noetw=
|
|
|
|
set noetw_msi_arg=
|
2012-11-21 03:27:22 +04:00
|
|
|
set noperfctr=
|
|
|
|
set noperfctr_msi_arg=
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 09:03:24 +04:00
|
|
|
set i18n_arg=
|
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
|
|
|
set download_arg=
|
2015-08-31 13:24:38 +03:00
|
|
|
set build_release=
|
2015-12-08 12:47:30 +03:00
|
|
|
set enable_vtune_arg=
|
2015-10-16 14:32:06 +03:00
|
|
|
set configure_flags=
|
2016-03-24 10:52:27 +03:00
|
|
|
set build_addons=
|
2016-06-29 23:03:18 +03:00
|
|
|
set dll=
|
2017-04-30 20:07:37 +03:00
|
|
|
set enable_static=
|
2017-03-21 00:55:26 +03:00
|
|
|
set build_addons_napi=
|
2016-12-12 01:37:25 +03:00
|
|
|
set test_node_inspect=
|
2017-04-17 07:01:00 +03:00
|
|
|
set test_check_deopts=
|
2017-12-29 08:10:46 +03:00
|
|
|
set js_test_suites=default
|
2017-06-29 01:24:52 +03:00
|
|
|
set v8_test_options=
|
|
|
|
set v8_build_options=
|
2017-06-02 00:43:34 +03:00
|
|
|
set "common_test_suites=%js_test_suites% doctool addons addons-napi&set build_addons=1&set build_addons_napi=1"
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 20:17:16 +03:00
|
|
|
set http2_debug=
|
|
|
|
set nghttp2_debug=
|
2017-09-14 16:27:13 +03:00
|
|
|
set link_module=
|
2017-11-29 21:48:33 +03:00
|
|
|
set no_cctest=
|
2018-04-11 15:11:36 +03:00
|
|
|
set openssl_no_asm=
|
2018-03-28 22:16:47 +03:00
|
|
|
set doc=
|
2011-08-24 10:14:56 +04:00
|
|
|
|
|
|
|
:next-arg
|
|
|
|
if "%1"=="" goto args-done
|
2012-02-13 00:04:03 +04:00
|
|
|
if /i "%1"=="debug" set config=Debug&goto arg-ok
|
2018-07-12 00:25:18 +03:00
|
|
|
if /i "%1"=="release" set config=Release&set ltcg=1&set "pch="&goto arg-ok
|
2012-02-13 00:04:03 +04:00
|
|
|
if /i "%1"=="clean" set target=Clean&goto arg-ok
|
2015-06-10 10:05:26 +03:00
|
|
|
if /i "%1"=="ia32" set target_arch=x86&goto arg-ok
|
|
|
|
if /i "%1"=="x86" set target_arch=x86&goto arg-ok
|
2012-02-13 00:04:03 +04:00
|
|
|
if /i "%1"=="x64" set target_arch=x64&goto arg-ok
|
2017-04-07 15:53:45 +03:00
|
|
|
if /i "%1"=="vs2017" set target_env=vs2017&goto arg-ok
|
2012-02-13 00:04:03 +04:00
|
|
|
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
|
2018-06-07 19:26:02 +03:00
|
|
|
if /i "%1"=="projgen" set projgen=1&goto arg-ok
|
2012-02-13 00:04:03 +04:00
|
|
|
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
|
2017-02-03 21:35:10 +03:00
|
|
|
if /i "%1"=="nosign" set "sign="&echo Note: vcbuild no longer signs by default. "nosign" is redundant.&goto arg-ok
|
2016-12-06 23:52:59 +03:00
|
|
|
if /i "%1"=="sign" set sign=1&goto arg-ok
|
2015-05-08 21:56:13 +03:00
|
|
|
if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
|
2012-06-12 03:23:17 +04:00
|
|
|
if /i "%1"=="noetw" set noetw=1&goto arg-ok
|
2012-11-21 03:27:22 +04:00
|
|
|
if /i "%1"=="noperfctr" set noperfctr=1&goto arg-ok
|
2018-06-06 19:22:50 +03:00
|
|
|
if /i "%1"=="ltcg" set ltcg=1&goto arg-ok
|
2018-07-12 00:25:18 +03:00
|
|
|
if /i "%1"=="nopch" set "pch="&goto arg-ok
|
2012-04-04 20:06:00 +04:00
|
|
|
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
|
2018-03-28 22:16:47 +03:00
|
|
|
if /i "%1"=="test" set test_args=%test_args% -J %common_test_suites%&set lint_cpp=1&set lint_js=1&set lint_md=1&goto arg-ok
|
2017-06-02 00:43:34 +03:00
|
|
|
if /i "%1"=="test-ci" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %common_test_suites%&set cctest_args=%cctest_args% --gtest_output=tap:cctest.tap&goto arg-ok
|
2018-03-27 16:55:18 +03:00
|
|
|
if /i "%1"=="build-addons" set build_addons=1&goto arg-ok
|
|
|
|
if /i "%1"=="build-addons-napi" set build_addons_napi=1&goto arg-ok
|
2016-03-24 10:52:27 +03:00
|
|
|
if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok
|
2017-03-21 00:55:26 +03:00
|
|
|
if /i "%1"=="test-addons-napi" set test_args=%test_args% addons-napi&set build_addons_napi=1&goto arg-ok
|
2015-02-28 04:42:49 +03:00
|
|
|
if /i "%1"=="test-simple" set test_args=%test_args% sequential parallel -J&goto arg-ok
|
|
|
|
if /i "%1"=="test-message" set test_args=%test_args% message&goto arg-ok
|
2016-11-08 00:34:54 +03:00
|
|
|
if /i "%1"=="test-tick-processor" set test_args=%test_args% tick-processor&goto arg-ok
|
2015-02-28 04:42:49 +03:00
|
|
|
if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok
|
|
|
|
if /i "%1"=="test-pummel" set test_args=%test_args% pummel&goto arg-ok
|
2016-05-04 06:51:41 +03:00
|
|
|
if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues&goto arg-ok
|
2017-06-10 20:27:18 +03:00
|
|
|
if /i "%1"=="test-async-hooks" set test_args=%test_args% async-hooks&goto arg-ok
|
2018-07-27 14:36:35 +03:00
|
|
|
if /i "%1"=="test-all" set test_args=%test_args% gc internet pummel %common_test_suites%&set lint_cpp=1&set lint_js=1&goto arg-ok
|
2016-12-12 01:37:25 +03:00
|
|
|
if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok
|
2017-04-17 07:01:00 +03:00
|
|
|
if /i "%1"=="test-check-deopts" set test_check_deopts=1&goto arg-ok
|
2017-02-23 01:05:19 +03:00
|
|
|
if /i "%1"=="test-npm" set test_npm=1&goto arg-ok
|
2017-06-29 01:24:52 +03:00
|
|
|
if /i "%1"=="test-v8" set test_v8=1&set custom_v8_test=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-v8-intl" set test_v8_intl=1&set custom_v8_test=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-v8-benchmarks" set test_v8_benchmarks=1&set custom_v8_test=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-v8-all" set test_v8=1&set test_v8_intl=1&set test_v8_benchmarks=1&set custom_v8_test=1&goto arg-ok
|
2018-01-06 05:19:36 +03:00
|
|
|
if /i "%1"=="lint-cpp" set lint_cpp=1&goto arg-ok
|
2017-09-08 14:44:58 +03:00
|
|
|
if /i "%1"=="lint-js" set lint_js=1&goto arg-ok
|
|
|
|
if /i "%1"=="jslint" set lint_js=1&echo Please use lint-js instead of jslint&goto arg-ok
|
|
|
|
if /i "%1"=="lint-js-ci" set lint_js_ci=1&goto arg-ok
|
|
|
|
if /i "%1"=="jslint-ci" set lint_js_ci=1&echo Please use lint-js-ci instead of jslint-ci&goto arg-ok
|
2018-03-28 22:16:47 +03:00
|
|
|
if /i "%1"=="lint-md" set lint_md=1&goto arg-ok
|
|
|
|
if /i "%1"=="lint-md-build" set lint_md_build=1&goto arg-ok
|
|
|
|
if /i "%1"=="lint" set lint_cpp=1&set lint_js=1&set lint_md=1&goto arg-ok
|
2017-09-08 14:44:58 +03:00
|
|
|
if /i "%1"=="lint-ci" set lint_cpp=1&set lint_js_ci=1&goto arg-ok
|
2016-03-24 20:53:42 +03:00
|
|
|
if /i "%1"=="package" set package=1&goto arg-ok
|
2015-08-13 18:30:01 +03:00
|
|
|
if /i "%1"=="msi" set msi=1&set licensertf=1&set download_arg="--download=all"&set i18n_arg=small-icu&goto arg-ok
|
2016-12-06 23:52:59 +03:00
|
|
|
if /i "%1"=="build-release" set build_release=1&set sign=1&goto arg-ok
|
2015-06-10 10:05:26 +03:00
|
|
|
if /i "%1"=="upload" set upload=1&goto arg-ok
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 09:03:24 +04:00
|
|
|
if /i "%1"=="small-icu" set i18n_arg=%1&goto arg-ok
|
|
|
|
if /i "%1"=="full-icu" set i18n_arg=%1&goto arg-ok
|
2018-01-22 19:55:34 +03:00
|
|
|
if /i "%1"=="intl-none" set i18n_arg=none&goto arg-ok
|
2017-12-11 20:08:20 +03:00
|
|
|
if /i "%1"=="without-intl" set i18n_arg=none&goto arg-ok
|
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
|
|
|
if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
|
2015-08-26 13:38:48 +03:00
|
|
|
if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok
|
2015-12-08 12:47:30 +03:00
|
|
|
if /i "%1"=="enable-vtune" set enable_vtune_arg=1&goto arg-ok
|
2016-06-29 23:03:18 +03:00
|
|
|
if /i "%1"=="dll" set dll=1&goto arg-ok
|
2017-10-09 15:50:24 +03:00
|
|
|
if /i "%1"=="static" set enable_static=1&goto arg-ok
|
2017-02-20 17:18:43 +03:00
|
|
|
if /i "%1"=="no-NODE-OPTIONS" set no_NODE_OPTIONS=1&goto arg-ok
|
http2: introducing HTTP/2
At long last: The initial *experimental* implementation of HTTP/2.
This is an accumulation of the work that has been done in the nodejs/http2
repository, squashed down to a couple of commits. The original commit
history has been preserved in the nodejs/http2 repository.
This PR introduces the nghttp2 C library as a new dependency. This library
provides the majority of the HTTP/2 protocol implementation, with the rest
of the code here providing the mapping of the library into a usable JS API.
Within src, a handful of new node_http2_*.c and node_http2_*.h files are
introduced. These provide the internal mechanisms that interface with nghttp
and define the `process.binding('http2')` interface.
The JS API is defined within `internal/http2/*.js`.
There are two APIs provided: Core and Compat.
The Core API is HTTP/2 specific and is designed to be as minimal and as
efficient as possible.
The Compat API is intended to be as close to the existing HTTP/1 API as
possible, with some exceptions.
Tests, documentation and initial benchmarks are included.
The `http2` module is gated by a new `--expose-http2` command line flag.
When used, `require('http2')` will be exposed to users. Note that there
is an existing `http2` module on npm that would be impacted by the introduction
of this module, which is the main reason for gating this behind a flag.
When using `require('http2')` the first time, a process warning will be
emitted indicating that an experimental feature is being used.
To run the benchmarks, the `h2load` tool (part of the nghttp project) is
required: `./node benchmarks/http2/simple.js benchmarker=h2load`. Only
two benchmarks are currently available.
Additional configuration options to enable verbose debugging are provided:
```
$ ./configure --debug-http2 --debug-nghttp2
$ NODE_DEBUG=http2 ./node
```
The `--debug-http2` configuration option enables verbose debug statements
from the `src/node_http2_*` files. The `--debug-nghttp2` enables the nghttp
library's own verbose debug output. The `NODE_DEBUG=http2` enables JS-level
debug output.
The following illustrates as simple HTTP/2 server and client interaction:
(The HTTP/2 client and server support both plain text and TLS connections)
```jt client = http2.connect('http://localhost:80');
const req = client.request({ ':path': '/some/path' });
req.on('data', (chunk) => { /* do something with the data */ });
req.on('end', () => {
client.destroy();
});
// Plain text (non-TLS server)
const server = http2.createServer();
server.on('stream', (stream, requestHeaders) => {
stream.respond({ ':status': 200 });
stream.write('hello ');
stream.end('world');
});
server.listen(80);
```
```js
const http2 = require('http2');
const client = http2.connect('http://localhost');
```
Author: Anna Henningsen <anna@addaleax.net>
Author: Colin Ihrig <cjihrig@gmail.com>
Author: Daniel Bevenius <daniel.bevenius@gmail.com>
Author: James M Snell <jasnell@gmail.com>
Author: Jun Mukai
Author: Kelvin Jin
Author: Matteo Collina <matteo.collina@gmail.com>
Author: Robert Kowalski <rok@kowalski.gd>
Author: Santiago Gimeno <santiago.gimeno@gmail.com>
Author: Sebastiaan Deckers <sebdeckers83@gmail.com>
Author: Yosuke Furukawa <yosuke.furukawa@gmail.com>
PR-URL: https://github.com/nodejs/node/pull/14239
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2017-07-17 20:17:16 +03:00
|
|
|
if /i "%1"=="debug-nghttp2" set debug_nghttp2=1&goto arg-ok
|
2017-09-14 16:27:13 +03:00
|
|
|
if /i "%1"=="link-module" set "link_module= --link-module=%2%link_module%"&goto arg-ok-2
|
2017-11-29 21:48:33 +03:00
|
|
|
if /i "%1"=="no-cctest" set no_cctest=1&goto arg-ok
|
2018-04-11 15:11:36 +03:00
|
|
|
if /i "%1"=="openssl-no-asm" set openssl_no_asm=1&goto arg-ok
|
2018-03-28 22:16:47 +03:00
|
|
|
if /i "%1"=="doc" set doc=1&goto arg-ok
|
2011-11-17 03:10:14 +04:00
|
|
|
|
2016-09-01 19:52:19 +03:00
|
|
|
echo Error: invalid command line option `%1`.
|
|
|
|
exit /b 1
|
2011-11-17 03:10:14 +04:00
|
|
|
|
2017-09-14 16:27:13 +03:00
|
|
|
:arg-ok-2
|
|
|
|
shift
|
2011-08-24 10:14:56 +04:00
|
|
|
:arg-ok
|
|
|
|
shift
|
|
|
|
goto next-arg
|
2015-08-31 13:24:38 +03:00
|
|
|
|
|
|
|
:args-done
|
|
|
|
|
2017-10-13 03:09:23 +03:00
|
|
|
if "%*"=="lint" (
|
|
|
|
goto lint-cpp
|
|
|
|
)
|
|
|
|
|
2015-08-13 18:30:01 +03:00
|
|
|
if defined build_release (
|
|
|
|
set config=Release
|
2016-03-24 20:53:42 +03:00
|
|
|
set package=1
|
2015-08-13 18:30:01 +03:00
|
|
|
set msi=1
|
|
|
|
set licensertf=1
|
|
|
|
set download_arg="--download=all"
|
|
|
|
set i18n_arg=small-icu
|
2018-06-07 19:26:02 +03:00
|
|
|
set projgen=1
|
2018-06-06 19:22:50 +03:00
|
|
|
set ltcg=1
|
2018-07-12 00:25:18 +03:00
|
|
|
set "pch="
|
2015-08-13 18:30:01 +03:00
|
|
|
)
|
|
|
|
|
2016-03-24 10:52:27 +03:00
|
|
|
:: assign path to node_exe
|
|
|
|
set "node_exe=%config%\node.exe"
|
2017-06-22 06:34:28 +03:00
|
|
|
set "node_gyp_exe="%node_exe%" deps\npm\node_modules\node-gyp\bin\node-gyp"
|
2018-03-28 22:16:47 +03:00
|
|
|
set "npm_exe="%~dp0%node_exe%" %~dp0deps\npm\bin\npm-cli.js"
|
2017-06-22 06:34:28 +03:00
|
|
|
if "%target_env%"=="vs2017" set "node_gyp_exe=%node_gyp_exe% --msvs_version=2017"
|
2016-03-24 10:52:27 +03:00
|
|
|
|
2017-11-25 22:17:23 +03:00
|
|
|
if "%config%"=="Debug" set configure_flags=%configure_flags% --debug
|
|
|
|
if defined nosnapshot set configure_flags=%configure_flags% --without-snapshot
|
|
|
|
if defined noetw set configure_flags=%configure_flags% --without-etw& set noetw_msi_arg=/p:NoETW=1
|
|
|
|
if defined noperfctr set configure_flags=%configure_flags% --without-perfctr& set noperfctr_msi_arg=/p:NoPerfCtr=1
|
2018-06-06 19:22:50 +03:00
|
|
|
if defined ltcg set configure_flags=%configure_flags% --with-ltcg
|
2018-07-12 00:25:18 +03:00
|
|
|
if defined pch set configure_flags=%configure_flags% --with-pch
|
2017-11-25 22:17:23 +03:00
|
|
|
if defined release_urlbase set configure_flags=%configure_flags% --release-urlbase=%release_urlbase%
|
|
|
|
if defined download_arg set configure_flags=%configure_flags% %download_arg%
|
2015-12-08 12:47:30 +03:00
|
|
|
if defined enable_vtune_arg set configure_flags=%configure_flags% --enable-vtune-profiling
|
2017-11-25 22:17:23 +03:00
|
|
|
if defined dll set configure_flags=%configure_flags% --shared
|
|
|
|
if defined enable_static set configure_flags=%configure_flags% --enable-static
|
|
|
|
if defined no_NODE_OPTIONS set configure_flags=%configure_flags% --without-node-options
|
|
|
|
if defined link_module set configure_flags=%configure_flags% %link_module%
|
|
|
|
if defined i18n_arg set configure_flags=%configure_flags% --with-intl=%i18n_arg%
|
|
|
|
if defined config_flags set configure_flags=%configure_flags% %config_flags%
|
|
|
|
if defined target_arch set configure_flags=%configure_flags% --dest-cpu=%target_arch%
|
2018-04-11 15:11:36 +03:00
|
|
|
if defined openssl_no_asm set configure_flags=%configure_flags% --openssl-no-asm
|
build, i18n: improve Intl build, add "--with-intl"
The two main goals of this change are:
- To make it easier to build the Intl option using ICU (particularly,
using a newer ICU than v8/Chromium's version)
- To enable a much smaller ICU build with only English support The goal
here is to get node.js binaries built this way by default so that the
Intl API can be used. Additional data can be added at execution time
(see Readme and wiki)
More details are at https://github.com/joyent/node/pull/7719
In particular, this change adds the "--with-intl=" configure option to
provide more ways of building "Intl":
- "full-icu" picks up an ICU from deps/icu
- "small-icu" is similar, but builds only English
- "system-icu" uses pkg-config to find an installed ICU
- "none" does nothing (no Intl)
For Windows builds, the "full-icu" or "small-icu" options are added to
vcbuild.bat.
Note that the existing "--with-icu-path" option is not removed from
configure, but may not be used alongside the new option.
Wiki changes have already been made on
https://github.com/joyent/node/wiki/Installation
and a new page created at
https://github.com/joyent/node/wiki/Intl
(marked as provisional until this change lands.)
Summary of changes:
* README.md : doc updates
* .gitignore : added "deps/icu" as this is the location where ICU is
unpacked to.
* Makefile : added the tools/icu/* files to cpplint, but excluded a
problematic file.
* configure : added the "--with-intl" option mentioned above.
Calculate at config time the list of ICU source files to use and data
packaging options.
* node.gyp : add the new files src/node_i18n.cc/.h as well as ICU
linkage.
* src/node.cc : add call into
node::i18n::InitializeICUDirectory(icu_data_dir) as well as new
--icu-data-dir option and NODE_ICU_DATA env variable to configure ICU
data loading. This loading is only relevant in the "small"
configuration.
* src/node_i18n.cc : new source file for the above Initialize..
function, to setup ICU as needed.
* tools/icu : new directory with some tools needed for this build.
* tools/icu/icu-generic.gyp : new .gyp file that builds ICU in some new
ways, both on unix/mac and windows.
* tools/icu/icu-system.gyp : new .gyp file to build node against a
pkg-config detected ICU.
* tools/icu/icu_small.json : new config file for the "English-only" small
build.
* tools/icu/icutrim.py : new tool for trimming down ICU data. Reads the
above .json file.
* tools/icu/iculslocs.cc : new tool for repairing ICU data manifests
after trim operation.
* tools/icu/no-op.cc : dummy file to force .gyp into using a C++ linker.
* vcbuild.bat : added small-icu and full-icu options, to call into
configure.
* Fixed toolset dependencies, see
https://github.com/joyent/node/pull/7719#issuecomment-54641687
Note that because of a bug in gyp {CC,CXX}_host must also be set.
Otherwise gcc/g++ will be used by default for part of the build.
Reviewed-by: Trevor Norris <trev.norris@gmail.com>
Reviewed-by: Fedor Indutny <fedor@indutny.com>
2014-09-05 09:03:24 +04:00
|
|
|
|
2015-10-08 01:40:26 +03:00
|
|
|
if not exist "%~dp0deps\icu" goto no-depsicu
|
|
|
|
if "%target%"=="Clean" echo deleting %~dp0deps\icu
|
|
|
|
if "%target%"=="Clean" rmdir /S /Q %~dp0deps\icu
|
|
|
|
:no-depsicu
|
|
|
|
|
2018-02-07 13:23:26 +03:00
|
|
|
call tools\msvs\find_python.cmd
|
2017-11-13 18:59:11 +03:00
|
|
|
if errorlevel 1 goto :exit
|
2018-02-07 13:23:26 +03:00
|
|
|
|
2018-04-11 15:11:36 +03:00
|
|
|
if not defined openssl_no_asm call tools\msvs\find_nasm.cmd
|
|
|
|
if errorlevel 1 echo Could not find NASM, install it or build with openssl-no-asm. See BUILDING.md.
|
2018-03-25 01:56:59 +03:00
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
call :getnodeversion || exit /b 1
|
2013-03-05 23:05:50 +04:00
|
|
|
|
2018-01-08 08:01:39 +03:00
|
|
|
if defined TAG set configure_flags=%configure_flags% --tag=%TAG%
|
|
|
|
|
2018-03-28 22:16:47 +03:00
|
|
|
if not "%target%"=="Clean" goto skip-clean
|
|
|
|
rmdir /Q /S "%~dp0%config%\node-v%FULLVERSION%-win-%target_arch%" > nul 2> nul
|
|
|
|
rmdir /Q /S "%~dp0tools\remark-cli\node_modules"
|
|
|
|
rmdir /Q /S "%~dp0tools\remark-preset-lint-node\node_modules"
|
|
|
|
:skip-clean
|
2016-08-11 22:18:16 +03:00
|
|
|
|
2016-12-06 23:52:59 +03:00
|
|
|
if defined noprojgen if defined nobuild if not defined sign if not defined msi goto licensertf
|
2016-09-05 00:24:31 +03:00
|
|
|
|
2015-04-23 17:26:59 +03:00
|
|
|
@rem Set environment for msbuild
|
2011-08-27 02:04:47 +04:00
|
|
|
|
2017-04-07 15:53:45 +03:00
|
|
|
set msvs_host_arch=x86
|
|
|
|
if _%PROCESSOR_ARCHITECTURE%_==_AMD64_ set msvs_host_arch=amd64
|
|
|
|
if _%PROCESSOR_ARCHITEW6432%_==_AMD64_ set msvs_host_arch=amd64
|
2017-06-16 18:49:20 +03:00
|
|
|
@rem usually vcvarsall takes an argument: host + '_' + target
|
2017-04-07 15:53:45 +03:00
|
|
|
set vcvarsall_arg=%msvs_host_arch%_%target_arch%
|
2017-06-02 15:51:48 +03:00
|
|
|
@rem unless both host and target are x64
|
2017-04-07 15:53:45 +03:00
|
|
|
if %target_arch%==x64 if %msvs_host_arch%==amd64 set vcvarsall_arg=amd64
|
2018-06-21 13:09:08 +03:00
|
|
|
@rem also if both are x86
|
|
|
|
if %target_arch%==x86 if %msvs_host_arch%==x86 set vcvarsall_arg=x86
|
2017-04-07 15:53:45 +03:00
|
|
|
|
|
|
|
@rem Look for Visual Studio 2017
|
|
|
|
:vs-set-2017
|
2017-11-12 19:15:52 +03:00
|
|
|
if defined target_env if "%target_env%" NEQ "vs2017" goto msbuild-not-found
|
2017-04-07 15:53:45 +03:00
|
|
|
echo Looking for Visual Studio 2017
|
2017-11-17 20:54:06 +03:00
|
|
|
call tools\msvs\vswhere_usability_wrapper.cmd
|
2017-11-12 19:15:52 +03:00
|
|
|
if "_%VCINSTALLDIR%_" == "__" goto msbuild-not-found
|
2017-11-17 20:54:06 +03:00
|
|
|
if defined msi (
|
|
|
|
echo Looking for WiX installation for Visual Studio 2017...
|
|
|
|
if not exist "%WIX%\SDK\VS2017" (
|
|
|
|
echo Failed to find WiX install for Visual Studio 2017
|
|
|
|
echo VS2017 support for WiX is only present starting at version 3.11
|
2017-11-12 19:15:52 +03:00
|
|
|
goto msbuild-not-found
|
2017-11-17 20:54:06 +03:00
|
|
|
)
|
|
|
|
if not exist "%VCINSTALLDIR%\..\MSBuild\Microsoft\WiX" (
|
|
|
|
echo Failed to find the Wix Toolset Visual Studio 2017 Extension
|
2017-11-12 19:15:52 +03:00
|
|
|
goto msbuild-not-found
|
2017-11-17 20:54:06 +03:00
|
|
|
)
|
|
|
|
)
|
2017-06-06 00:45:41 +03:00
|
|
|
@rem check if VS2017 is already setup, and for the requested arch
|
|
|
|
if "_%VisualStudioVersion%_" == "_15.0_" if "_%VSCMD_ARG_TGT_ARCH%_"=="_%target_arch%_" goto found_vs2017
|
2017-06-25 20:42:05 +03:00
|
|
|
@rem need to clear VSINSTALLDIR for vcvarsall to work as expected
|
2017-06-06 00:45:41 +03:00
|
|
|
set "VSINSTALLDIR="
|
2017-07-16 16:12:47 +03:00
|
|
|
@rem prevent VsDevCmd.bat from changing the current working directory
|
|
|
|
set "VSCMD_START_DIR=%CD%"
|
2017-04-07 15:53:45 +03:00
|
|
|
set vcvars_call="%VCINSTALLDIR%\Auxiliary\Build\vcvarsall.bat" %vcvarsall_arg%
|
|
|
|
echo calling: %vcvars_call%
|
|
|
|
call %vcvars_call%
|
2017-11-12 19:15:52 +03:00
|
|
|
if errorlevel 1 goto msbuild-not-found
|
2017-04-07 15:53:45 +03:00
|
|
|
:found_vs2017
|
|
|
|
echo Found MSVS version %VisualStudioVersion%
|
|
|
|
set GYP_MSVS_VERSION=2017
|
|
|
|
set PLATFORM_TOOLSET=v141
|
|
|
|
goto msbuild-found
|
|
|
|
|
2011-09-05 02:35:42 +04:00
|
|
|
:msbuild-not-found
|
2017-04-07 15:53:45 +03:00
|
|
|
echo Failed to find a suitable Visual Studio installation.
|
|
|
|
echo Try to run in a "Developer Command Prompt" or consult
|
|
|
|
echo https://github.com/nodejs/node/blob/master/BUILDING.md#windows-1
|
2015-04-23 17:26:59 +03:00
|
|
|
goto exit
|
2011-09-05 02:35:42 +04:00
|
|
|
|
2015-06-19 20:24:14 +03:00
|
|
|
:wix-not-found
|
|
|
|
echo Build skipped. To generate installer, you need to install Wix.
|
2018-06-23 22:42:12 +03:00
|
|
|
goto install-doctools
|
2015-06-19 20:24:14 +03:00
|
|
|
|
2011-09-05 02:35:42 +04:00
|
|
|
:msbuild-found
|
2015-04-23 17:26:59 +03:00
|
|
|
|
2018-06-07 19:26:02 +03:00
|
|
|
set project_generated=
|
2015-04-23 17:26:59 +03:00
|
|
|
:project-gen
|
|
|
|
@rem Skip project generation if requested.
|
|
|
|
if defined noprojgen goto msbuild
|
2018-06-07 19:26:02 +03:00
|
|
|
if defined projgen goto run-configure
|
|
|
|
if not exist node.sln goto run-configure
|
|
|
|
if not exist .gyp_configure_stamp goto run-configure
|
|
|
|
echo %configure_flags% > .tmp_gyp_configure_stamp
|
|
|
|
where /R . /T *.gyp? >> .tmp_gyp_configure_stamp
|
|
|
|
fc .gyp_configure_stamp .tmp_gyp_configure_stamp >NUL 2>&1
|
|
|
|
if errorlevel 1 goto run-configure
|
|
|
|
|
|
|
|
:skip-configure
|
2018-08-29 16:52:24 +03:00
|
|
|
del .tmp_gyp_configure_stamp 2> NUL
|
2018-06-07 19:26:02 +03:00
|
|
|
echo Reusing solution generated with %configure_flags%
|
|
|
|
goto msbuild
|
|
|
|
|
|
|
|
:run-configure
|
2018-08-29 16:52:24 +03:00
|
|
|
del .tmp_gyp_configure_stamp 2> NUL
|
|
|
|
del .gyp_configure_stamp 2> NUL
|
2015-04-23 17:26:59 +03:00
|
|
|
@rem Generate the VS project.
|
2018-02-07 13:23:26 +03:00
|
|
|
echo configure %configure_flags%
|
2018-06-07 19:26:02 +03:00
|
|
|
echo %configure_flags%> .used_configure_flags
|
2018-02-07 13:23:26 +03:00
|
|
|
python configure %configure_flags%
|
2015-04-23 17:26:59 +03:00
|
|
|
if errorlevel 1 goto create-msvs-files-failed
|
|
|
|
if not exist node.sln goto create-msvs-files-failed
|
2018-06-07 19:26:02 +03:00
|
|
|
set project_generated=1
|
2015-04-23 17:26:59 +03:00
|
|
|
echo Project files generated.
|
2018-06-07 19:26:02 +03:00
|
|
|
echo %configure_flags% > .gyp_configure_stamp
|
|
|
|
where /R . /T *.gyp? >> .gyp_configure_stamp
|
2015-04-23 17:26:59 +03:00
|
|
|
|
|
|
|
:msbuild
|
2015-06-23 15:13:00 +03:00
|
|
|
@rem Skip build if requested.
|
2015-04-23 17:26:59 +03:00
|
|
|
if defined nobuild goto sign
|
|
|
|
|
2011-08-24 10:14:56 +04:00
|
|
|
@rem Build the sln with msbuild.
|
2017-04-04 23:01:24 +03:00
|
|
|
set "msbcpu=/m:2"
|
|
|
|
if "%NUMBER_OF_PROCESSORS%"=="1" set "msbcpu=/m:1"
|
2016-03-09 14:58:06 +03:00
|
|
|
set "msbplatform=Win32"
|
|
|
|
if "%target_arch%"=="x64" set "msbplatform=x64"
|
2017-11-29 21:48:33 +03:00
|
|
|
if "%target%"=="Build" if defined no_cctest set target=node
|
2017-04-04 23:01:24 +03:00
|
|
|
msbuild node.sln %msbcpu% /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
2018-06-07 19:26:02 +03:00
|
|
|
if errorlevel 1 (
|
|
|
|
if not defined project_generated echo Building Node with reused solution failed. To regenerate project files use "vcbuild projgen"
|
|
|
|
goto exit
|
|
|
|
)
|
2015-07-08 01:06:13 +03:00
|
|
|
if "%target%" == "Clean" goto exit
|
2011-08-27 02:04:47 +04:00
|
|
|
|
2012-04-04 20:06:00 +04:00
|
|
|
:sign
|
2016-12-06 23:52:59 +03:00
|
|
|
@rem Skip signing unless the `sign` option was specified.
|
|
|
|
if not defined sign goto licensertf
|
2012-04-04 20:06:00 +04:00
|
|
|
|
2016-10-18 13:26:39 +03:00
|
|
|
call tools\sign.bat Release\node.exe
|
2014-03-26 09:26:17 +04:00
|
|
|
if errorlevel 1 echo Failed to sign exe&goto exit
|
2011-11-23 06:17:12 +04:00
|
|
|
|
2012-04-04 20:06:00 +04:00
|
|
|
:licensertf
|
|
|
|
@rem Skip license.rtf generation if not requested.
|
2016-03-24 20:53:42 +03:00
|
|
|
if not defined licensertf goto package
|
2012-04-04 20:06:00 +04:00
|
|
|
|
2017-11-25 22:17:23 +03:00
|
|
|
%config%\node.exe tools\license2rtf.js < LICENSE > %config%\license.rtf
|
2012-04-04 20:06:00 +04:00
|
|
|
if errorlevel 1 echo Failed to generate license.rtf&goto exit
|
|
|
|
|
2016-03-24 20:53:42 +03:00
|
|
|
:package
|
|
|
|
if not defined package goto msi
|
|
|
|
echo Creating package...
|
|
|
|
cd Release
|
|
|
|
mkdir node-v%FULLVERSION%-win-%target_arch% > nul 2> nul
|
|
|
|
mkdir node-v%FULLVERSION%-win-%target_arch%\node_modules > nul 2>nul
|
|
|
|
|
|
|
|
copy /Y node.exe node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy node.exe && goto package_error
|
|
|
|
copy /Y ..\LICENSE node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy LICENSE && goto package_error
|
|
|
|
copy /Y ..\README.md node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy README.md && goto package_error
|
|
|
|
copy /Y ..\CHANGELOG.md node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy CHANGELOG.md && goto package_error
|
|
|
|
robocopy /e ..\deps\npm node-v%FULLVERSION%-win-%target_arch%\node_modules\npm > nul
|
|
|
|
if errorlevel 8 echo Cannot copy npm package && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npm node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npm && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npm.cmd node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npm.cmd && goto package_error
|
2017-08-25 19:00:07 +03:00
|
|
|
copy /Y ..\deps\npm\bin\npx node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npx && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npx.cmd node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npx.cmd && goto package_error
|
2016-08-11 22:18:16 +03:00
|
|
|
copy /Y ..\tools\msvs\nodevars.bat node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy nodevars.bat && goto package_error
|
|
|
|
if not defined noetw (
|
|
|
|
copy /Y ..\src\res\node_etw_provider.man node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy node_etw_provider.man && goto package_error
|
|
|
|
)
|
|
|
|
if not defined noperfctr (
|
|
|
|
copy /Y ..\src\res\node_perfctr_provider.man node-v%FULLVERSION%-win-%target_arch%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy node_perfctr_provider.man && goto package_error
|
|
|
|
)
|
2016-03-24 20:53:42 +03:00
|
|
|
|
|
|
|
echo Creating node-v%FULLVERSION%-win-%target_arch%.7z
|
|
|
|
del node-v%FULLVERSION%-win-%target_arch%.7z > nul 2> nul
|
|
|
|
7z a -r -mx9 -t7z node-v%FULLVERSION%-win-%target_arch%.7z node-v%FULLVERSION%-win-%target_arch% > nul
|
|
|
|
if errorlevel 1 echo Cannot create node-v%FULLVERSION%-win-%target_arch%.7z && goto package_error
|
|
|
|
|
|
|
|
echo Creating node-v%FULLVERSION%-win-%target_arch%.zip
|
|
|
|
del node-v%FULLVERSION%-win-%target_arch%.zip > nul 2> nul
|
|
|
|
7z a -r -mx9 -tzip node-v%FULLVERSION%-win-%target_arch%.zip node-v%FULLVERSION%-win-%target_arch% > nul
|
|
|
|
if errorlevel 1 echo Cannot create node-v%FULLVERSION%-win-%target_arch%.zip && goto package_error
|
|
|
|
|
|
|
|
echo Creating node_pdb.7z
|
|
|
|
del node_pdb.7z > nul 2> nul
|
|
|
|
7z a -mx9 -t7z node_pdb.7z node.pdb > nul
|
|
|
|
|
|
|
|
echo Creating node_pdb.zip
|
|
|
|
del node_pdb.zip > nul 2> nul
|
|
|
|
7z a -mx9 -tzip node_pdb.zip node.pdb > nul
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
echo Package created!
|
|
|
|
goto package_done
|
|
|
|
:package_error
|
|
|
|
cd ..
|
|
|
|
exit /b 1
|
|
|
|
:package_done
|
|
|
|
|
2011-09-15 01:51:49 +04:00
|
|
|
:msi
|
|
|
|
@rem Skip msi generation if not requested
|
2018-06-23 22:42:12 +03:00
|
|
|
if not defined msi goto install-doctools
|
2013-03-01 04:56:37 +04:00
|
|
|
|
|
|
|
:msibuild
|
2015-08-13 19:14:34 +03:00
|
|
|
echo Building node-v%FULLVERSION%-%target_arch%.msi
|
2017-11-17 20:54:06 +03:00
|
|
|
set "msbsdk="
|
|
|
|
if defined WindowsSDKVersion set "msbsdk=/p:WindowsTargetPlatformVersion=%WindowsSDKVersion:~0,-1%"
|
|
|
|
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Clean,Build %msbsdk% /p:PlatformToolset=%PLATFORM_TOOLSET% /p:GypMsvsVersion=%GYP_MSVS_VERSION% /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% %noetw_msi_arg% %noperfctr_msi_arg% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
2011-09-15 01:51:49 +04:00
|
|
|
if errorlevel 1 goto exit
|
|
|
|
|
2016-12-06 23:52:59 +03:00
|
|
|
if not defined sign goto upload
|
2016-10-18 13:26:39 +03:00
|
|
|
call tools\sign.bat node-v%FULLVERSION%-%target_arch%.msi
|
2014-03-26 09:26:17 +04:00
|
|
|
if errorlevel 1 echo Failed to sign msi&goto exit
|
2011-11-23 06:17:12 +04:00
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
:upload
|
|
|
|
@rem Skip upload if not requested
|
2018-06-23 22:42:12 +03:00
|
|
|
if not defined upload goto install-doctools
|
2015-06-10 10:05:26 +03:00
|
|
|
|
|
|
|
if not defined SSHCONFIG (
|
|
|
|
echo SSHCONFIG is not set for upload
|
|
|
|
exit /b 1
|
|
|
|
)
|
2017-04-07 15:53:45 +03:00
|
|
|
|
2015-08-13 19:14:34 +03:00
|
|
|
if not defined STAGINGSERVER set STAGINGSERVER=node-www
|
2015-08-31 10:03:26 +03:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "mkdir -p nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%"
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node.exe %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node.lib %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 20:53:42 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node_pdb.zip %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.zip
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 20:53:42 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node_pdb.7z %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.7z
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 20:53:42 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node-v%FULLVERSION%-win-%target_arch%.7z %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-win-%target_arch%.7z
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 20:53:42 +03:00
|
|
|
scp -F %SSHCONFIG% Release\node-v%FULLVERSION%-win-%target_arch%.zip %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-win-%target_arch%.zip
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 10:03:26 +03:00
|
|
|
scp -F %SSHCONFIG% node-v%FULLVERSION%-%target_arch%.msi %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 20:53:42 +03:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "touch nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-win-%target_arch%.zip.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-win-%target_arch%.7z.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%.done && chmod -R ug=rw-x+X,o=r+X nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.* nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%*"
|
2018-04-05 16:59:10 +03:00
|
|
|
if errorlevel 1 goto exit
|
|
|
|
|
2015-06-10 10:05:26 +03:00
|
|
|
|
2018-06-23 22:42:12 +03:00
|
|
|
:install-doctools
|
|
|
|
REM only install if building doc OR testing doctool
|
|
|
|
if not defined doc (
|
|
|
|
echo.%test_args% | findstr doctool 1>nul
|
|
|
|
if errorlevel 1 goto :skip-install-doctools
|
|
|
|
)
|
|
|
|
if exist "tools\doc\node_modules\unified\package.json" goto skip-install-doctools
|
|
|
|
SETLOCAL
|
|
|
|
cd tools\doc
|
2018-08-19 00:39:06 +03:00
|
|
|
%npm_exe% ci
|
2018-06-23 22:42:12 +03:00
|
|
|
cd ..\..
|
|
|
|
if errorlevel 1 goto exit
|
|
|
|
ENDLOCAL
|
|
|
|
:skip-install-doctools
|
|
|
|
@rem Clear errorlevel from echo.%test_args% | findstr doctool 1>nul
|
|
|
|
cd .
|
|
|
|
|
2018-03-28 22:16:47 +03:00
|
|
|
:build-doc
|
|
|
|
@rem Build documentation if requested
|
|
|
|
if not defined doc goto run
|
|
|
|
if not exist %node_exe% (
|
|
|
|
echo Failed to find node.exe
|
|
|
|
goto run
|
|
|
|
)
|
|
|
|
mkdir %config%\doc
|
|
|
|
robocopy /e doc\api %config%\doc\api
|
|
|
|
robocopy /e doc\api_assets %config%\doc\api\assets
|
|
|
|
|
|
|
|
for %%F in (%config%\doc\api\*.md) do (
|
2018-07-07 04:46:38 +03:00
|
|
|
%node_exe% tools\doc\generate.js --node-version=v%FULLVERSION% --analytics=%DOCS_ANALYTICS% %%F --output-dir=%%~dF%%~pF
|
2018-03-28 22:16:47 +03:00
|
|
|
)
|
|
|
|
|
2011-08-27 02:04:47 +04:00
|
|
|
:run
|
|
|
|
@rem Run tests if requested.
|
|
|
|
|
2017-03-21 00:55:26 +03:00
|
|
|
if not defined build_addons goto build-addons-napi
|
2016-03-24 10:52:27 +03:00
|
|
|
if not exist "%node_exe%" (
|
|
|
|
echo Failed to find node.exe
|
2017-03-21 00:55:26 +03:00
|
|
|
goto build-addons-napi
|
2016-03-24 10:52:27 +03:00
|
|
|
)
|
2017-03-21 00:55:26 +03:00
|
|
|
echo Building addons
|
2016-03-24 10:52:27 +03:00
|
|
|
:: clear
|
|
|
|
for /d %%F in (test\addons\??_*) do (
|
|
|
|
rd /s /q %%F
|
|
|
|
)
|
|
|
|
:: generate
|
|
|
|
"%node_exe%" tools\doc\addon-verify.js
|
2016-09-05 17:08:03 +03:00
|
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
2016-03-24 10:52:27 +03:00
|
|
|
:: building addons
|
2018-06-19 12:42:31 +03:00
|
|
|
setlocal
|
|
|
|
set npm_config_nodedir=%~dp0
|
|
|
|
"%node_exe%" "%~dp0tools\build-addons.js" "%~dp0deps\npm\node_modules\node-gyp\bin\node-gyp.js" "%~dp0test\addons"
|
|
|
|
if errorlevel 1 exit /b 1
|
|
|
|
endlocal
|
2017-03-21 00:55:26 +03:00
|
|
|
|
|
|
|
:build-addons-napi
|
|
|
|
if not defined build_addons_napi goto run-tests
|
|
|
|
if not exist "%node_exe%" (
|
|
|
|
echo Failed to find node.exe
|
|
|
|
goto run-tests
|
|
|
|
)
|
|
|
|
echo Building addons-napi
|
|
|
|
:: clear
|
|
|
|
for /d %%F in (test\addons-napi\??_*) do (
|
|
|
|
rd /s /q %%F
|
|
|
|
)
|
|
|
|
:: building addons-napi
|
2018-08-29 18:18:02 +03:00
|
|
|
setlocal
|
|
|
|
set npm_config_nodedir=%~dp0
|
|
|
|
"%node_exe%" "%~dp0tools\build-addons.js" "%~dp0deps\npm\node_modules\node-gyp\bin\node-gyp.js" "%~dp0test\addons-napi"
|
|
|
|
if errorlevel 1 exit /b 1
|
|
|
|
endlocal
|
2016-03-24 10:52:27 +03:00
|
|
|
goto run-tests
|
|
|
|
|
2012-06-14 02:55:29 +04:00
|
|
|
:run-tests
|
2017-04-17 07:01:00 +03:00
|
|
|
if defined test_check_deopts goto node-check-deopts
|
|
|
|
if defined test_node_inspect goto node-test-inspect
|
|
|
|
goto node-tests
|
|
|
|
|
|
|
|
:node-check-deopts
|
2018-02-07 13:23:26 +03:00
|
|
|
python tools\test.py --mode=release --check-deopts parallel sequential -J
|
2017-04-17 07:01:00 +03:00
|
|
|
if defined test_node_inspect goto node-test-inspect
|
|
|
|
goto node-tests
|
|
|
|
|
|
|
|
:node-test-inspect
|
2016-12-12 01:37:25 +03:00
|
|
|
set USE_EMBEDDED_NODE_INSPECT=1
|
|
|
|
%config%\node tools\test-npm-package.js --install deps\node-inspect test
|
|
|
|
goto node-tests
|
|
|
|
|
|
|
|
:node-tests
|
2017-02-23 01:05:19 +03:00
|
|
|
if not defined test_npm goto no-test-npm
|
|
|
|
set npm_test_cmd="%node_exe%" tools\test-npm-package.js --install --logfile=test-npm.tap deps\npm test-node
|
|
|
|
echo %npm_test_cmd%
|
|
|
|
%npm_test_cmd%
|
|
|
|
if errorlevel 1 goto exit
|
|
|
|
:no-test-npm
|
|
|
|
|
2017-06-29 01:24:52 +03:00
|
|
|
if "%test_args%"=="" goto test-v8
|
2015-02-28 04:42:49 +03:00
|
|
|
if "%config%"=="Debug" set test_args=--mode=debug %test_args%
|
|
|
|
if "%config%"=="Release" set test_args=--mode=release %test_args%
|
2017-11-29 21:48:33 +03:00
|
|
|
if defined no_cctest echo Skipping cctest because no-cctest was specified && goto run-test-py
|
2016-08-10 12:47:46 +03:00
|
|
|
echo running 'cctest %cctest_args%'
|
|
|
|
"%config%\cctest" %cctest_args%
|
2017-11-29 21:48:33 +03:00
|
|
|
:run-test-py
|
2018-02-07 13:23:26 +03:00
|
|
|
echo running 'python tools\test.py %test_args%'
|
|
|
|
python tools\test.py %test_args%
|
2017-10-09 15:50:24 +03:00
|
|
|
goto test-v8
|
2017-06-29 01:24:52 +03:00
|
|
|
|
|
|
|
:test-v8
|
2017-09-08 14:44:58 +03:00
|
|
|
if not defined custom_v8_test goto lint-cpp
|
2017-06-29 01:24:52 +03:00
|
|
|
call tools/test-v8.bat
|
|
|
|
if errorlevel 1 goto exit
|
2017-09-08 14:44:58 +03:00
|
|
|
goto lint-cpp
|
2017-03-15 06:12:32 +03:00
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
:lint-cpp
|
|
|
|
if not defined lint_cpp goto lint-js
|
2018-07-27 14:36:35 +03:00
|
|
|
call :run-lint-cpp src\*.c src\*.cc src\*.h test\addons\*.cc test\addons\*.h test\addons-napi\*.cc test\addons-napi\*.h test\cctest\*.cc test\cctest\*.h tools\icu\*.cc tools\icu\*.h
|
2018-02-07 13:23:26 +03:00
|
|
|
python tools/check-imports.py
|
2017-09-08 14:44:58 +03:00
|
|
|
goto lint-js
|
2017-07-07 02:03:27 +03:00
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
:run-lint-cpp
|
2017-07-07 02:03:27 +03:00
|
|
|
if "%*"=="" goto exit
|
2017-09-08 14:44:58 +03:00
|
|
|
echo running lint-cpp '%*'
|
2017-03-15 06:12:32 +03:00
|
|
|
set cppfilelist=
|
|
|
|
setlocal enabledelayedexpansion
|
2017-07-07 02:03:27 +03:00
|
|
|
for /f "tokens=*" %%G in ('dir /b /s /a %*') do (
|
2017-03-15 06:12:32 +03:00
|
|
|
set relpath=%%G
|
|
|
|
set relpath=!relpath:*%~dp0=!
|
2017-10-13 03:09:23 +03:00
|
|
|
call :add-to-list !relpath! > nul
|
2017-03-15 06:12:32 +03:00
|
|
|
)
|
|
|
|
( endlocal
|
|
|
|
set cppfilelist=%localcppfilelist%
|
|
|
|
)
|
2018-02-07 13:23:26 +03:00
|
|
|
python tools/cpplint.py %cppfilelist% > nul
|
2017-07-07 02:03:27 +03:00
|
|
|
goto exit
|
2011-11-12 00:38:55 +04:00
|
|
|
|
2017-03-15 06:12:32 +03:00
|
|
|
:add-to-list
|
2018-01-06 05:19:36 +03:00
|
|
|
@rem Subroutine used to filter items from the cpplint file list
|
|
|
|
echo %1 | findstr /c:"src\node_root_certs.h" > nul 2>&1
|
2017-03-15 06:12:32 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2018-01-06 05:19:36 +03:00
|
|
|
echo %1 | findstr /c:"src\tracing\trace_event.h" > nul 2>&1
|
2017-11-03 18:05:11 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2018-01-06 05:19:36 +03:00
|
|
|
echo %1 | findstr /c:"src\tracing\trace_event_common.h" > nul 2>&1
|
2017-03-15 06:12:32 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2018-01-06 05:19:36 +03:00
|
|
|
echo %1 | findstr /r /c:"test\\addons\\[0-9].*_.*\.h" > nul 2>&1
|
2017-03-15 06:12:32 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2018-01-06 05:19:36 +03:00
|
|
|
echo %1 | findstr /r /c:"test\\addons\\[0-9].*_.*\.cc" > nul 2>&1
|
2017-03-15 06:12:32 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2018-01-06 05:19:36 +03:00
|
|
|
echo %1 | findstr /c:"test\addons-napi\common.h" > nul 2>&1
|
2017-10-13 08:20:00 +03:00
|
|
|
if %errorlevel% equ 0 goto exit
|
|
|
|
|
2017-03-15 06:12:32 +03:00
|
|
|
set "localcppfilelist=%localcppfilelist% %1"
|
|
|
|
goto exit
|
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
:lint-js
|
|
|
|
if defined lint_js_ci goto lint-js-ci
|
2018-03-28 22:16:47 +03:00
|
|
|
if not defined lint_js goto lint-md-build
|
2017-12-22 18:53:42 +03:00
|
|
|
if not exist tools\node_modules\eslint goto no-lint
|
2017-09-08 14:44:58 +03:00
|
|
|
echo running lint-js
|
2018-03-04 08:47:41 +03:00
|
|
|
%config%\node tools\node_modules\eslint\bin\eslint.js --cache --rule "linebreak-style: 0" --ext=.js,.mjs,.md .eslintrc.js benchmark doc lib test tools
|
2018-03-28 22:16:47 +03:00
|
|
|
goto lint-md-build
|
2016-03-10 06:40:54 +03:00
|
|
|
|
2017-09-08 14:44:58 +03:00
|
|
|
:lint-js-ci
|
|
|
|
echo running lint-js-ci
|
|
|
|
%config%\node tools\lint-js.js -J -f tap -o test-eslint.tap benchmark doc lib test tools
|
2018-03-28 22:16:47 +03:00
|
|
|
goto lint-md-build
|
2012-03-08 23:39:39 +04:00
|
|
|
|
2016-03-14 02:08:11 +03:00
|
|
|
:no-lint
|
|
|
|
echo Linting is not available through the source tarball.
|
|
|
|
echo Use the git repo instead: $ git clone https://github.com/nodejs/node.git
|
2018-03-28 22:16:47 +03:00
|
|
|
goto lint-md-build
|
|
|
|
|
|
|
|
:lint-md-build
|
|
|
|
if not defined lint_md_build goto lint-md
|
|
|
|
SETLOCAL
|
|
|
|
echo Markdown linter: installing remark-cli into tools\
|
|
|
|
cd tools\remark-cli
|
2018-07-14 00:37:56 +03:00
|
|
|
%npm_exe% ci
|
2018-03-28 22:16:47 +03:00
|
|
|
cd ..\..
|
|
|
|
if errorlevel 1 goto lint-md-build-failed
|
|
|
|
echo Markdown linter: installing remark-preset-lint-node into tools\
|
|
|
|
cd tools\remark-preset-lint-node
|
2018-07-14 00:37:56 +03:00
|
|
|
%npm_exe% ci
|
2018-03-28 22:16:47 +03:00
|
|
|
cd ..\..
|
|
|
|
if errorlevel 1 goto lint-md-build-failed
|
|
|
|
ENDLOCAL
|
|
|
|
goto lint-md
|
|
|
|
|
|
|
|
:if errorlevel 1 goto lint-md-build-failed
|
|
|
|
ENDLOCAL
|
|
|
|
echo Failed to install markdown linter
|
|
|
|
exit /b 1
|
|
|
|
|
|
|
|
:lint-md
|
|
|
|
if not defined lint_md goto exit
|
|
|
|
if not exist tools\remark-cli\node_modules goto lint-md-no-tools
|
|
|
|
if not exist tools\remark-preset-lint-node\node_modules goto lint-md-no-tools
|
|
|
|
echo Running Markdown linter on docs...
|
|
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
set lint_md_files=
|
|
|
|
cd doc
|
|
|
|
for /D %%D IN (*) do (
|
|
|
|
for %%F IN (%%D\*.md) do (
|
|
|
|
set "lint_md_files="doc\%%F" !lint_md_files!"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
cd ..
|
|
|
|
%config%\node tools\remark-cli\cli.js -q -f %lint_md_files%
|
|
|
|
ENDLOCAL
|
2017-09-17 02:43:54 +03:00
|
|
|
goto exit
|
2016-03-14 02:08:11 +03:00
|
|
|
|
2018-03-28 22:16:47 +03:00
|
|
|
:lint-md-no-tools
|
|
|
|
echo The markdown linter is not installed.
|
|
|
|
echo To install (requires internet access) run: vcbuild lint-md-build
|
|
|
|
goto exit
|
|
|
|
|
|
|
|
|
2015-02-28 04:42:49 +03:00
|
|
|
:create-msvs-files-failed
|
|
|
|
echo Failed to create vc project files.
|
2018-06-07 19:26:02 +03:00
|
|
|
del .used_configure_flags
|
2015-02-28 04:42:49 +03:00
|
|
|
goto exit
|
|
|
|
|
2011-08-24 10:14:56 +04:00
|
|
|
:help
|
2018-07-27 14:36:35 +03:00
|
|
|
echo vcbuild.bat [debug/release] [msi] [doc] [test/test-ci/test-all/test-addons/test-addons-napi/test-internet/test-pummel/test-simple/test-message/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-async-hooks/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [noetw] [noperfctr] [ltcg] [nopch] [licensetf] [sign] [ia32/x86/x64] [vs2017] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-js-ci/lint-md] [lint-md-build] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [no-cctest] [openssl-no-asm]
|
2011-08-24 10:14:56 +04:00
|
|
|
echo Examples:
|
2017-09-14 16:27:13 +03:00
|
|
|
echo vcbuild.bat : builds release build
|
|
|
|
echo vcbuild.bat debug : builds debug build
|
|
|
|
echo vcbuild.bat release msi : builds release build and MSI installer package
|
|
|
|
echo vcbuild.bat test : builds debug build and runs tests
|
|
|
|
echo vcbuild.bat build-release : builds the release distribution as used by nodejs.org
|
|
|
|
echo vcbuild.bat enable-vtune : builds nodejs with Intel VTune profiling support to profile JavaScript
|
|
|
|
echo vcbuild.bat link-module my_module.js : bundles my_module as built-in module
|
2018-03-28 22:16:47 +03:00
|
|
|
echo vcbuild.bat lint : runs the C++, documentation and JavaScript linter
|
2017-11-29 21:48:33 +03:00
|
|
|
echo vcbuild.bat no-cctest : skip building cctest.exe
|
2011-08-24 10:14:56 +04:00
|
|
|
goto exit
|
|
|
|
|
|
|
|
:exit
|
2013-03-02 00:03:44 +04:00
|
|
|
goto :EOF
|
|
|
|
|
2017-06-29 01:24:52 +03:00
|
|
|
|
2013-03-02 00:03:44 +04:00
|
|
|
rem ***************
|
|
|
|
rem Subroutines
|
|
|
|
rem ***************
|
|
|
|
|
|
|
|
:getnodeversion
|
|
|
|
set NODE_VERSION=
|
2015-06-10 10:05:26 +03:00
|
|
|
set TAG=
|
|
|
|
set FULLVERSION=
|
2018-02-07 13:23:26 +03:00
|
|
|
|
|
|
|
for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
|
2015-06-10 10:05:26 +03:00
|
|
|
if not defined NODE_VERSION (
|
2015-08-13 19:14:34 +03:00
|
|
|
echo Cannot determine current version of Node.js
|
2015-06-10 10:05:26 +03:00
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
|
|
|
|
if not defined DISTTYPE set DISTTYPE=release
|
|
|
|
if "%DISTTYPE%"=="release" (
|
|
|
|
set FULLVERSION=%NODE_VERSION%
|
2017-06-28 21:09:00 +03:00
|
|
|
goto distexit
|
2015-06-10 10:05:26 +03:00
|
|
|
)
|
|
|
|
if "%DISTTYPE%"=="custom" (
|
|
|
|
if not defined CUSTOMTAG (
|
|
|
|
echo "CUSTOMTAG is not set for DISTTYPE=custom"
|
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
set TAG=%CUSTOMTAG%
|
|
|
|
)
|
|
|
|
if not "%DISTTYPE%"=="custom" (
|
|
|
|
if not defined DATESTRING (
|
|
|
|
echo "DATESTRING is not set for nightly"
|
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
if not defined COMMIT (
|
|
|
|
echo "COMMIT is not set for nightly"
|
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
if not "%DISTTYPE%"=="nightly" (
|
|
|
|
if not "%DISTTYPE%"=="next-nightly" (
|
|
|
|
echo "DISTTYPE is not release, custom, nightly or next-nightly"
|
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
)
|
|
|
|
set TAG=%DISTTYPE%%DATESTRING%%COMMIT%
|
|
|
|
)
|
|
|
|
set FULLVERSION=%NODE_VERSION%-%TAG%
|
2017-06-28 21:09:00 +03:00
|
|
|
|
|
|
|
:distexit
|
|
|
|
if not defined DISTTYPEDIR set DISTTYPEDIR=%DISTTYPE%
|
|
|
|
goto :EOF
|