2017-11-13 15:59:11 +00:00
|
|
|
@if not defined DEBUG_HELPER @ECHO OFF
|
2011-08-24 06:14:56 +00:00
|
|
|
|
2018-12-14 00:43:45 +00:00
|
|
|
:: Other scripts rely on the environment variables set in this script, so we
|
|
|
|
:: explicitly allow them to persist in the calling shell.
|
|
|
|
endlocal
|
|
|
|
|
2024-05-25 19:00:02 +00:00
|
|
|
set "arg=%1"
|
|
|
|
if /i "%arg:~-1%"=="?" goto help
|
|
|
|
if /i "%arg:~-4%"=="help" goto help
|
2011-08-24 06:14:56 +00:00
|
|
|
|
2018-03-12 03:09:14 +00:00
|
|
|
cd %~dp0
|
|
|
|
|
2020-07-20 04:13:13 +00:00
|
|
|
set JS_SUITES=default
|
|
|
|
set NATIVE_SUITES=addons js-native-api node-api
|
2019-11-29 01:45:52 +00:00
|
|
|
@rem CI_* variables should be kept synchronized with the ones in Makefile
|
2020-07-20 02:18:09 +00:00
|
|
|
set "CI_NATIVE_SUITES=%NATIVE_SUITES% benchmark"
|
2020-07-10 05:06:04 +00:00
|
|
|
set "CI_JS_SUITES=%JS_SUITES% pummel"
|
2019-11-29 01:45:52 +00:00
|
|
|
set CI_DOC=doctool
|
|
|
|
@rem Same as the test-ci target in Makefile
|
2020-07-20 04:13:13 +00:00
|
|
|
set "common_test_suites=%JS_SUITES% %NATIVE_SUITES%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1"
|
2019-11-29 01:45:52 +00:00
|
|
|
|
2011-08-24 06:14:56 +00:00
|
|
|
@rem Process arguments.
|
2012-02-23 12:25:20 +00:00
|
|
|
set config=Release
|
2011-08-24 06:14:56 +00:00
|
|
|
set target=Build
|
2017-02-28 11:41:03 +00:00
|
|
|
set target_arch=x64
|
2018-06-06 16:22:50 +00:00
|
|
|
set ltcg=
|
2017-06-25 17:42:05 +00:00
|
|
|
set target_env=
|
2011-08-24 06:14:56 +00:00
|
|
|
set noprojgen=
|
2018-06-07 16:26:02 +00:00
|
|
|
set projgen=
|
2024-05-13 19:05:05 +00:00
|
|
|
set clang_cl=
|
2011-08-26 22:04:47 +00:00
|
|
|
set nobuild=
|
2016-12-06 20:52:59 +00:00
|
|
|
set sign=
|
2015-05-08 18:56:13 +00:00
|
|
|
set nosnapshot=
|
2022-06-02 15:39:08 +00:00
|
|
|
set nonpm=
|
|
|
|
set nocorepack=
|
2016-08-10 09:47:46 +00:00
|
|
|
set cctest_args=
|
2011-08-26 22:04:47 +00:00
|
|
|
set test_args=
|
2018-09-21 16:30:08 +00:00
|
|
|
set stage_package=
|
2016-03-24 17:53:42 +00:00
|
|
|
set package=
|
2011-09-14 21:51:49 +00:00
|
|
|
set msi=
|
2015-06-10 07:05:26 +00:00
|
|
|
set upload=
|
2012-04-04 16:06:00 +00:00
|
|
|
set licensertf=
|
2017-09-08 11:44:58 +00:00
|
|
|
set lint_js=
|
2024-09-06 17:31:45 +00:00
|
|
|
set lint_js_build=
|
2024-08-06 05:57:35 +00:00
|
|
|
set lint_js_fix=
|
2017-09-08 11:44:58 +00:00
|
|
|
set lint_cpp=
|
2018-03-28 19:16:47 +00:00
|
|
|
set lint_md=
|
|
|
|
set lint_md_build=
|
2024-03-26 07:05:20 +00:00
|
|
|
set format_md=
|
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 05:03:24 +00: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 01:13:14 +00:00
|
|
|
set download_arg=
|
2015-08-31 10:24:38 +00:00
|
|
|
set build_release=
|
2015-10-16 11:32:06 +00:00
|
|
|
set configure_flags=
|
2022-11-22 08:28:19 +00:00
|
|
|
set enable_vtune_arg=
|
2016-03-24 07:52:27 +00:00
|
|
|
set build_addons=
|
2016-06-29 20:03:18 +00:00
|
|
|
set dll=
|
2017-04-30 17:07:37 +00:00
|
|
|
set enable_static=
|
2018-11-17 20:34:54 +00:00
|
|
|
set build_js_native_api_tests=
|
|
|
|
set build_node_api_tests=
|
2016-12-11 22:37:25 +00:00
|
|
|
set test_node_inspect=
|
2017-04-17 04:01:00 +00:00
|
|
|
set test_check_deopts=
|
2017-06-28 22:24:52 +00:00
|
|
|
set v8_test_options=
|
|
|
|
set v8_build_options=
|
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 17:17:16 +00:00
|
|
|
set http2_debug=
|
|
|
|
set nghttp2_debug=
|
2017-09-14 13:27:13 +00:00
|
|
|
set link_module=
|
2017-11-29 18:48:33 +00:00
|
|
|
set no_cctest=
|
2018-06-19 19:17:46 +00:00
|
|
|
set cctest=
|
2018-04-11 12:11:36 +00:00
|
|
|
set openssl_no_asm=
|
2022-12-21 19:16:56 +00:00
|
|
|
set no_shared_roheap=
|
2018-03-28 19:16:47 +00:00
|
|
|
set doc=
|
2019-03-04 16:06:00 +00:00
|
|
|
set extra_msbuild_args=
|
2024-03-30 19:17:13 +00:00
|
|
|
set compile_commands=
|
2019-11-30 01:13:48 +00:00
|
|
|
set exit_code=0
|
2011-08-24 06:14:56 +00:00
|
|
|
|
|
|
|
:next-arg
|
|
|
|
if "%1"=="" goto args-done
|
2012-02-12 20:04:03 +00:00
|
|
|
if /i "%1"=="debug" set config=Debug&goto arg-ok
|
2019-02-04 20:49:47 +00:00
|
|
|
if /i "%1"=="release" set config=Release&set ltcg=1&set cctest=1&goto arg-ok
|
2012-02-12 20:04:03 +00:00
|
|
|
if /i "%1"=="clean" set target=Clean&goto arg-ok
|
2019-08-12 10:14:43 +00:00
|
|
|
if /i "%1"=="testclean" set target=TestClean&goto arg-ok
|
2015-06-10 07:05:26 +00: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-12 20:04:03 +00:00
|
|
|
if /i "%1"=="x64" set target_arch=x64&goto arg-ok
|
2018-12-05 22:48:52 +00:00
|
|
|
if /i "%1"=="arm64" set target_arch=arm64&goto arg-ok
|
2021-08-24 05:52:36 +00:00
|
|
|
if /i "%1"=="vs2022" set target_env=vs2022&goto arg-ok
|
2012-02-12 20:04:03 +00:00
|
|
|
if /i "%1"=="noprojgen" set noprojgen=1&goto arg-ok
|
2018-06-07 16:26:02 +00:00
|
|
|
if /i "%1"=="projgen" set projgen=1&goto arg-ok
|
2024-05-13 19:05:05 +00:00
|
|
|
if /i "%1"=="clang-cl" set clang_cl=1&goto arg-ok
|
2012-02-12 20:04:03 +00:00
|
|
|
if /i "%1"=="nobuild" set nobuild=1&goto arg-ok
|
2017-02-03 18:35:10 +00:00
|
|
|
if /i "%1"=="nosign" set "sign="&echo Note: vcbuild no longer signs by default. "nosign" is redundant.&goto arg-ok
|
2016-12-06 20:52:59 +00:00
|
|
|
if /i "%1"=="sign" set sign=1&goto arg-ok
|
2015-05-08 18:56:13 +00:00
|
|
|
if /i "%1"=="nosnapshot" set nosnapshot=1&goto arg-ok
|
2022-06-02 15:39:08 +00:00
|
|
|
if /i "%1"=="nonpm" set nonpm=1&goto arg-ok
|
|
|
|
if /i "%1"=="nocorepack" set nocorepack=1&goto arg-ok
|
2018-06-06 16:22:50 +00:00
|
|
|
if /i "%1"=="ltcg" set ltcg=1&goto arg-ok
|
2012-04-04 16:06:00 +00:00
|
|
|
if /i "%1"=="licensertf" set licensertf=1&goto arg-ok
|
2021-11-24 05:30:21 +00:00
|
|
|
if /i "%1"=="test" set test_args=%test_args% %common_test_suites%&set lint_cpp=1&set lint_js=1&set lint_md=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-ci-native" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %CI_NATIVE_SUITES% %CI_DOC%&set build_addons=1&set build_js_native_api_tests=1&set build_node_api_tests=1&set cctest_args=%cctest_args% --gtest_output=xml:cctest.junit.xml&goto arg-ok
|
|
|
|
if /i "%1"=="test-ci-js" set test_args=%test_args% %test_ci_args% -p tap --logfile test.tap %CI_JS_SUITES%&set no_cctest=1&goto arg-ok
|
2018-03-27 13:55:18 +00:00
|
|
|
if /i "%1"=="build-addons" set build_addons=1&goto arg-ok
|
2018-11-17 20:34:54 +00:00
|
|
|
if /i "%1"=="build-js-native-api-tests" set build_js_native_api_tests=1&goto arg-ok
|
|
|
|
if /i "%1"=="build-node-api-tests" set build_node_api_tests=1&goto arg-ok
|
2016-03-24 07:52:27 +00:00
|
|
|
if /i "%1"=="test-addons" set test_args=%test_args% addons&set build_addons=1&goto arg-ok
|
2020-10-19 12:34:27 +00:00
|
|
|
if /i "%1"=="test-doc" set test_args=%test_args% %CI_DOC%&set doc=1&&set lint_js=1&set lint_md=1&goto arg-ok
|
2018-11-17 20:34:54 +00:00
|
|
|
if /i "%1"=="test-js-native-api" set test_args=%test_args% js-native-api&set build_js_native_api_tests=1&goto arg-ok
|
|
|
|
if /i "%1"=="test-node-api" set test_args=%test_args% node-api&set build_node_api_tests=1&goto arg-ok
|
2016-11-07 21:34:54 +00:00
|
|
|
if /i "%1"=="test-tick-processor" set test_args=%test_args% tick-processor&goto arg-ok
|
2015-02-28 01:42:49 +00:00
|
|
|
if /i "%1"=="test-internet" set test_args=%test_args% internet&goto arg-ok
|
2016-05-04 03:51:41 +00:00
|
|
|
if /i "%1"=="test-known-issues" set test_args=%test_args% known_issues&goto arg-ok
|
2018-07-27 11:36:35 +00: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-11 22:37:25 +00:00
|
|
|
if /i "%1"=="test-node-inspect" set test_node_inspect=1&goto arg-ok
|
2017-04-17 04:01:00 +00:00
|
|
|
if /i "%1"=="test-check-deopts" set test_check_deopts=1&goto arg-ok
|
2017-02-22 22:05:19 +00:00
|
|
|
if /i "%1"=="test-npm" set test_npm=1&goto arg-ok
|
2017-06-28 22:24:52 +00: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 02:19:36 +00:00
|
|
|
if /i "%1"=="lint-cpp" set lint_cpp=1&goto arg-ok
|
2017-09-08 11:44:58 +00:00
|
|
|
if /i "%1"=="lint-js" set lint_js=1&goto arg-ok
|
2024-09-06 17:31:45 +00:00
|
|
|
if /i "%1"=="lint-js-build" set lint_js_build=1&goto arg-ok
|
2024-08-06 05:57:35 +00:00
|
|
|
if /i "%1"=="lint-js-fix" set lint_js_fix=1&goto arg-ok
|
2017-09-08 11:44:58 +00:00
|
|
|
if /i "%1"=="jslint" set lint_js=1&echo Please use lint-js instead of jslint&goto arg-ok
|
2018-03-28 19:16:47 +00: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 11:44:58 +00:00
|
|
|
if /i "%1"=="lint-ci" set lint_cpp=1&set lint_js_ci=1&goto arg-ok
|
2024-03-26 07:05:20 +00:00
|
|
|
if /i "%1"=="format-md" set format_md=1&goto arg-ok
|
2016-03-24 17:53:42 +00:00
|
|
|
if /i "%1"=="package" set package=1&goto arg-ok
|
2019-10-08 16:57:09 +00:00
|
|
|
if /i "%1"=="msi" set msi=1&set licensertf=1&set download_arg="--download=all"&set i18n_arg=full-icu&goto arg-ok
|
2016-12-06 20:52:59 +00:00
|
|
|
if /i "%1"=="build-release" set build_release=1&set sign=1&goto arg-ok
|
2015-06-10 07:05:26 +00: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 05:03:24 +00: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 16:55:34 +00:00
|
|
|
if /i "%1"=="intl-none" set i18n_arg=none&goto arg-ok
|
2017-12-11 17:08:20 +00: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 01:13:14 +00:00
|
|
|
if /i "%1"=="download-all" set download_arg="--download=all"&goto arg-ok
|
2015-08-26 10:38:48 +00:00
|
|
|
if /i "%1"=="ignore-flaky" set test_args=%test_args% --flaky-tests=dontcare&goto arg-ok
|
2016-06-29 20:03:18 +00:00
|
|
|
if /i "%1"=="dll" set dll=1&goto arg-ok
|
2022-11-22 08:28:19 +00:00
|
|
|
if /i "%1"=="enable-vtune" set enable_vtune_arg=1&goto arg-ok
|
2017-10-09 12:50:24 +00:00
|
|
|
if /i "%1"=="static" set enable_static=1&goto arg-ok
|
2017-02-20 14:18:43 +00: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 17:17:16 +00:00
|
|
|
if /i "%1"=="debug-nghttp2" set debug_nghttp2=1&goto arg-ok
|
2017-09-14 13:27:13 +00:00
|
|
|
if /i "%1"=="link-module" set "link_module= --link-module=%2%link_module%"&goto arg-ok-2
|
2017-11-29 18:48:33 +00:00
|
|
|
if /i "%1"=="no-cctest" set no_cctest=1&goto arg-ok
|
2018-06-19 19:17:46 +00:00
|
|
|
if /i "%1"=="cctest" set cctest=1&goto arg-ok
|
2018-04-11 12:11:36 +00:00
|
|
|
if /i "%1"=="openssl-no-asm" set openssl_no_asm=1&goto arg-ok
|
2022-12-21 19:16:56 +00:00
|
|
|
if /i "%1"=="no-shared-roheap" set no_shared_roheap=1&goto arg-ok
|
2018-03-28 19:16:47 +00:00
|
|
|
if /i "%1"=="doc" set doc=1&goto arg-ok
|
2024-06-06 10:13:17 +00:00
|
|
|
if /i "%1"=="binlog" set extra_msbuild_args=/binaryLogger:out\%config%\node.binlog&goto arg-ok
|
2024-03-30 19:17:13 +00:00
|
|
|
if /i "%1"=="compile-commands" set compile_commands=1&goto arg-ok
|
2011-11-16 23:10:14 +00:00
|
|
|
|
2016-09-01 16:52:19 +00:00
|
|
|
echo Error: invalid command line option `%1`.
|
|
|
|
exit /b 1
|
2011-11-16 23:10:14 +00:00
|
|
|
|
2017-09-14 13:27:13 +00:00
|
|
|
:arg-ok-2
|
|
|
|
shift
|
2011-08-24 06:14:56 +00:00
|
|
|
:arg-ok
|
|
|
|
shift
|
|
|
|
goto next-arg
|
2015-08-31 10:24:38 +00:00
|
|
|
|
|
|
|
:args-done
|
|
|
|
|
2015-08-13 15:30:01 +00:00
|
|
|
if defined build_release (
|
|
|
|
set config=Release
|
2016-03-24 17:53:42 +00:00
|
|
|
set package=1
|
2015-08-13 15:30:01 +00:00
|
|
|
set msi=1
|
|
|
|
set licensertf=1
|
|
|
|
set download_arg="--download=all"
|
2019-10-08 16:57:09 +00:00
|
|
|
set i18n_arg=full-icu
|
2018-06-07 16:26:02 +00:00
|
|
|
set projgen=1
|
2018-06-19 19:17:46 +00:00
|
|
|
set cctest=1
|
2018-06-06 16:22:50 +00:00
|
|
|
set ltcg=1
|
2015-08-13 15:30:01 +00:00
|
|
|
)
|
|
|
|
|
2018-09-21 16:30:08 +00:00
|
|
|
if defined msi set stage_package=1
|
|
|
|
if defined package set stage_package=1
|
|
|
|
|
2016-03-24 07:52:27 +00:00
|
|
|
:: assign path to node_exe
|
|
|
|
set "node_exe=%config%\node.exe"
|
2017-06-22 03:34:28 +00:00
|
|
|
set "node_gyp_exe="%node_exe%" deps\npm\node_modules\node-gyp\bin\node-gyp"
|
2018-03-28 19:16:47 +00:00
|
|
|
set "npm_exe="%~dp0%node_exe%" %~dp0deps\npm\bin\npm-cli.js"
|
2021-08-24 05:52:36 +00:00
|
|
|
if "%target_env%"=="vs2022" set "node_gyp_exe=%node_gyp_exe% --msvs_version=2022"
|
2016-03-24 07:52:27 +00:00
|
|
|
|
2019-09-19 13:25:37 +00:00
|
|
|
:: skip building if the only argument received was lint
|
|
|
|
if "%*"=="lint" if exist "%node_exe%" goto lint-cpp
|
|
|
|
|
2024-03-26 07:05:20 +00:00
|
|
|
:: skip building if the only argument received was format-md
|
|
|
|
if "%*"=="format-md" if exist "%node_exe%" goto format-md
|
|
|
|
|
2017-11-25 19:17:23 +00:00
|
|
|
if "%config%"=="Debug" set configure_flags=%configure_flags% --debug
|
|
|
|
if defined nosnapshot set configure_flags=%configure_flags% --without-snapshot
|
2022-06-02 15:39:08 +00:00
|
|
|
if defined nonpm set configure_flags=%configure_flags% --without-npm
|
|
|
|
if defined nocorepack set configure_flags=%configure_flags% --without-corepack
|
2018-06-06 16:22:50 +00:00
|
|
|
if defined ltcg set configure_flags=%configure_flags% --with-ltcg
|
2017-11-25 19:17:23 +00: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%
|
2022-11-22 08:28:19 +00:00
|
|
|
if defined enable_vtune_arg set configure_flags=%configure_flags% --enable-vtune-profiling
|
2017-11-25 19:17:23 +00: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%
|
2022-10-27 13:20:26 +00:00
|
|
|
if defined debug_nghttp2 set configure_flags=%configure_flags% --debug-nghttp2
|
2018-04-11 12:11:36 +00:00
|
|
|
if defined openssl_no_asm set configure_flags=%configure_flags% --openssl-no-asm
|
2022-12-21 19:16:56 +00:00
|
|
|
if defined no_shared_roheap set configure_flags=%configure_flags% --disable-shared-readonly-heap
|
2018-09-18 18:57:05 +00:00
|
|
|
if defined DEBUG_HELPER set configure_flags=%configure_flags% --verbose
|
2024-03-30 19:17:13 +00:00
|
|
|
if defined compile_commands set configure_flags=%configure_flags% -C
|
2024-05-30 14:28:47 +00:00
|
|
|
|
|
|
|
if "%target_arch%"=="x86" (
|
|
|
|
echo "32-bit Windows builds are not supported anymore."
|
|
|
|
exit /b 1
|
|
|
|
)
|
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 05:03:24 +00:00
|
|
|
|
2015-10-07 22:40:26 +00: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
|
|
|
|
|
2019-08-12 10:14:43 +00:00
|
|
|
if "%target%"=="TestClean" (
|
|
|
|
echo deleting test/.tmp*
|
|
|
|
if exist "test\.tmp*" for /f %%i in ('dir /a:d /s /b test\.tmp*') do rmdir /S /Q "%%i"
|
|
|
|
goto exit
|
|
|
|
)
|
|
|
|
|
|
|
|
|
2018-02-07 10:23:26 +00:00
|
|
|
call tools\msvs\find_python.cmd
|
2017-11-13 15:59:11 +00:00
|
|
|
if errorlevel 1 goto :exit
|
2018-02-07 10:23:26 +00:00
|
|
|
|
2024-05-30 14:28:47 +00:00
|
|
|
REM NASM is only needed on x86_64.
|
2018-12-05 22:48:52 +00:00
|
|
|
if not defined openssl_no_asm if "%target_arch%" NEQ "arm64" call tools\msvs\find_nasm.cmd
|
2018-04-11 12:11:36 +00:00
|
|
|
if errorlevel 1 echo Could not find NASM, install it or build with openssl-no-asm. See BUILDING.md.
|
2018-03-24 22:56:59 +00:00
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
call :getnodeversion || exit /b 1
|
2013-03-05 19:05:50 +00:00
|
|
|
|
2018-01-08 05:01:39 +00:00
|
|
|
if defined TAG set configure_flags=%configure_flags% --tag=%TAG%
|
|
|
|
|
2018-03-28 19:16:47 +00:00
|
|
|
if not "%target%"=="Clean" goto skip-clean
|
2018-11-07 21:06:33 +00:00
|
|
|
rmdir /Q /S "%~dp0%config%\%TARGET_NAME%" > nul 2> nul
|
2018-03-28 19:16:47 +00:00
|
|
|
:skip-clean
|
2016-08-11 19:18:16 +00:00
|
|
|
|
2019-04-06 18:22:45 +00:00
|
|
|
if defined noprojgen if defined nobuild goto :after-build
|
2016-09-04 21:24:31 +00:00
|
|
|
|
2015-04-23 14:26:59 +00:00
|
|
|
@rem Set environment for msbuild
|
2011-08-26 22:04:47 +00:00
|
|
|
|
2024-05-30 14:28:47 +00:00
|
|
|
set msvs_host_arch=amd64
|
2023-03-02 13:23:11 +00:00
|
|
|
if _%PROCESSOR_ARCHITECTURE%_==_ARM64_ set msvs_host_arch=arm64
|
2017-06-16 15:49:20 +00:00
|
|
|
@rem usually vcvarsall takes an argument: host + '_' + target
|
2017-04-07 12:53:45 +00:00
|
|
|
set vcvarsall_arg=%msvs_host_arch%_%target_arch%
|
2023-03-02 13:23:11 +00:00
|
|
|
@rem unless both the host and the target are the same
|
2017-04-07 12:53:45 +00:00
|
|
|
if %target_arch%==x64 if %msvs_host_arch%==amd64 set vcvarsall_arg=amd64
|
2023-03-02 13:23:11 +00:00
|
|
|
if %target_arch%==%msvs_host_arch% set vcvarsall_arg=%target_arch%
|
2017-04-07 12:53:45 +00:00
|
|
|
|
2021-08-24 05:52:36 +00:00
|
|
|
@rem Look for Visual Studio 2022
|
|
|
|
:vs-set-2022
|
2023-10-09 16:25:32 +00:00
|
|
|
if defined target_env if "%target_env%" NEQ "vs2022" goto msbuild-not-found
|
2021-08-24 05:52:36 +00:00
|
|
|
echo Looking for Visual Studio 2022
|
|
|
|
@rem VCINSTALLDIR may be set if run from a VS Command Prompt and needs to be
|
|
|
|
@rem cleared first as vswhere_usability_wrapper.cmd doesn't when it fails to
|
|
|
|
@rem detect the version searched for
|
|
|
|
if not defined target_env set "VCINSTALLDIR="
|
2024-06-11 17:37:26 +00:00
|
|
|
call tools\msvs\vswhere_usability_wrapper.cmd "[17.6,18.0)" %target_arch% "prerelease" %clang_cl%
|
2023-10-09 16:25:32 +00:00
|
|
|
if "_%VCINSTALLDIR%_" == "__" goto msbuild-not-found
|
2021-08-24 05:52:36 +00:00
|
|
|
@rem check if VS2022 is already setup, and for the requested arch
|
|
|
|
if "_%VisualStudioVersion%_" == "_17.0_" if "_%VSCMD_ARG_TGT_ARCH%_"=="_%target_arch%_" goto found_vs2022
|
|
|
|
@rem need to clear VSINSTALLDIR for vcvarsall to work as expected
|
|
|
|
set "VSINSTALLDIR="
|
|
|
|
@rem prevent VsDevCmd.bat from changing the current working directory
|
|
|
|
set "VSCMD_START_DIR=%CD%"
|
|
|
|
set vcvars_call="%VCINSTALLDIR%\Auxiliary\Build\vcvarsall.bat" %vcvarsall_arg%
|
|
|
|
echo calling: %vcvars_call%
|
|
|
|
call %vcvars_call%
|
2023-10-09 16:25:32 +00:00
|
|
|
if errorlevel 1 goto msbuild-not-found
|
2021-08-24 05:52:36 +00:00
|
|
|
if defined DEBUG_HELPER @ECHO ON
|
|
|
|
:found_vs2022
|
|
|
|
echo Found MSVS version %VisualStudioVersion%
|
|
|
|
set GYP_MSVS_VERSION=2022
|
|
|
|
set PLATFORM_TOOLSET=v143
|
|
|
|
goto msbuild-found
|
|
|
|
|
2011-09-04 22:35:42 +00:00
|
|
|
:msbuild-not-found
|
2024-06-11 17:37:26 +00:00
|
|
|
set "clang_echo="
|
|
|
|
if defined clang_cl set "clang_echo= or Clang compiler/LLVM toolset"
|
|
|
|
echo Failed to find a suitable Visual Studio installation%clang_echo%.
|
2017-04-07 12:53:45 +00:00
|
|
|
echo Try to run in a "Developer Command Prompt" or consult
|
2021-05-03 09:15:35 +00:00
|
|
|
echo https://github.com/nodejs/node/blob/HEAD/BUILDING.md#windows
|
2015-04-23 14:26:59 +00:00
|
|
|
goto exit
|
2011-09-04 22:35:42 +00:00
|
|
|
|
|
|
|
:msbuild-found
|
2015-04-23 14:26:59 +00:00
|
|
|
|
2024-07-25 10:08:16 +00:00
|
|
|
@rem Visual Studio v17.10 has a bug that causes the build to fail.
|
|
|
|
@rem Check if the version is v17.10 and exit if it is.
|
|
|
|
echo %VSCMD_VER% | findstr /b /c:"17.10" >nul
|
|
|
|
if %errorlevel% neq 1 (
|
|
|
|
echo Node.js doesn't compile with Visual Studio 17.10 Please use a different version.
|
|
|
|
goto exit
|
|
|
|
)
|
|
|
|
|
2024-06-11 17:37:26 +00:00
|
|
|
@rem check if the clang-cl build is requested
|
|
|
|
if not defined clang_cl goto clang-skip
|
|
|
|
@rem x64 is hard coded as it is used for both cross and native compilation.
|
|
|
|
set "clang_path=%VCINSTALLDIR%\Tools\Llvm\x64\bin\clang.exe"
|
|
|
|
for /F "tokens=3" %%i in ('"%clang_path%" --version') do (
|
|
|
|
set clang_version=%%i
|
|
|
|
goto clang-found
|
|
|
|
)
|
|
|
|
|
|
|
|
:clang-not-found
|
|
|
|
echo Failed to find Clang compiler in %clang_path%.
|
|
|
|
goto exit
|
|
|
|
|
|
|
|
:clang-found
|
|
|
|
echo Found Clang version %clang_version%
|
|
|
|
set configure_flags=%configure_flags% --clang-cl=%clang_version%
|
|
|
|
|
|
|
|
:clang-skip
|
|
|
|
|
2018-06-07 16:26:02 +00:00
|
|
|
set project_generated=
|
2015-04-23 14:26:59 +00:00
|
|
|
:project-gen
|
|
|
|
@rem Skip project generation if requested.
|
|
|
|
if defined noprojgen goto msbuild
|
2018-06-07 16:26:02 +00: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
|
2021-06-17 19:47:06 +00:00
|
|
|
where /R . /T *.gyp* >> .tmp_gyp_configure_stamp
|
2018-06-07 16:26:02 +00:00
|
|
|
fc .gyp_configure_stamp .tmp_gyp_configure_stamp >NUL 2>&1
|
|
|
|
if errorlevel 1 goto run-configure
|
|
|
|
|
|
|
|
:skip-configure
|
2018-08-29 13:52:24 +00:00
|
|
|
del .tmp_gyp_configure_stamp 2> NUL
|
2018-06-07 16:26:02 +00:00
|
|
|
echo Reusing solution generated with %configure_flags%
|
|
|
|
goto msbuild
|
|
|
|
|
|
|
|
:run-configure
|
2018-08-29 13:52:24 +00:00
|
|
|
del .tmp_gyp_configure_stamp 2> NUL
|
|
|
|
del .gyp_configure_stamp 2> NUL
|
2015-04-23 14:26:59 +00:00
|
|
|
@rem Generate the VS project.
|
2018-02-07 10:23:26 +00:00
|
|
|
echo configure %configure_flags%
|
2018-06-07 16:26:02 +00:00
|
|
|
echo %configure_flags%> .used_configure_flags
|
2018-02-07 10:23:26 +00:00
|
|
|
python configure %configure_flags%
|
2015-04-23 14:26:59 +00:00
|
|
|
if errorlevel 1 goto create-msvs-files-failed
|
|
|
|
if not exist node.sln goto create-msvs-files-failed
|
2018-06-07 16:26:02 +00:00
|
|
|
set project_generated=1
|
2015-04-23 14:26:59 +00:00
|
|
|
echo Project files generated.
|
2018-06-07 16:26:02 +00:00
|
|
|
echo %configure_flags% > .gyp_configure_stamp
|
2021-06-17 19:47:06 +00:00
|
|
|
where /R . /T *.gyp* >> .gyp_configure_stamp
|
2015-04-23 14:26:59 +00:00
|
|
|
|
|
|
|
:msbuild
|
2015-06-23 12:13:00 +00:00
|
|
|
@rem Skip build if requested.
|
2019-04-06 18:22:45 +00:00
|
|
|
if defined nobuild goto :after-build
|
2015-04-23 14:26:59 +00:00
|
|
|
|
2011-08-24 06:14:56 +00:00
|
|
|
@rem Build the sln with msbuild.
|
2017-04-04 20:01:24 +00:00
|
|
|
set "msbcpu=/m:2"
|
|
|
|
if "%NUMBER_OF_PROCESSORS%"=="1" set "msbcpu=/m:1"
|
2024-05-30 14:28:47 +00:00
|
|
|
set "msbplatform=x64"
|
2018-12-05 22:48:52 +00:00
|
|
|
if "%target_arch%"=="arm64" set "msbplatform=ARM64"
|
2018-06-19 19:17:46 +00:00
|
|
|
if "%target%"=="Build" (
|
2019-04-08 14:48:09 +00:00
|
|
|
if defined no_cctest set target=node
|
|
|
|
if "%test_args%"=="" set target=node
|
2018-06-19 19:17:46 +00:00
|
|
|
if defined cctest set target="Build"
|
|
|
|
)
|
2019-04-08 14:48:09 +00:00
|
|
|
if "%target%"=="node" if exist "%config%\cctest.exe" del "%config%\cctest.exe"
|
2024-05-23 18:33:40 +00:00
|
|
|
if "%target%"=="node" if exist "%config%\embedtest.exe" del "%config%\embedtest.exe"
|
2019-03-04 16:06:00 +00:00
|
|
|
if defined msbuild_args set "extra_msbuild_args=%extra_msbuild_args% %msbuild_args%"
|
2020-11-02 20:59:13 +00:00
|
|
|
@rem Setup env variables to use multiprocessor build
|
|
|
|
set UseMultiToolTask=True
|
|
|
|
set EnforceProcessCountAcrossBuilds=True
|
|
|
|
set MultiProcMaxCount=%NUMBER_OF_PROCESSORS%
|
2018-12-14 00:43:45 +00:00
|
|
|
msbuild node.sln %msbcpu% /t:%target% /p:Configuration=%config% /p:Platform=%msbplatform% /clp:NoItemAndPropertyList;Verbosity=minimal /nologo %extra_msbuild_args%
|
2018-06-07 16:26:02 +00:00
|
|
|
if errorlevel 1 (
|
|
|
|
if not defined project_generated echo Building Node with reused solution failed. To regenerate project files use "vcbuild projgen"
|
2019-04-06 18:22:45 +00:00
|
|
|
exit /B 1
|
2018-06-07 16:26:02 +00:00
|
|
|
)
|
2015-07-07 22:06:13 +00:00
|
|
|
if "%target%" == "Clean" goto exit
|
2011-08-26 22:04:47 +00:00
|
|
|
|
2019-04-06 18:22:45 +00:00
|
|
|
:after-build
|
2024-01-25 20:46:09 +00:00
|
|
|
:: Check existence of %config% before removing it.
|
|
|
|
if exist %config% rd %config%
|
2019-04-13 14:06:00 +00:00
|
|
|
if errorlevel 1 echo "Old build output exists at 'out\%config%'. Please remove." & exit /B
|
2019-05-16 18:00:04 +00:00
|
|
|
:: Use /J because /D (symlink) requires special permissions.
|
|
|
|
if EXIST out\%config% mklink /J %config% out\%config%
|
|
|
|
if errorlevel 1 echo "Could not create junction to 'out\%config%'." & exit /B
|
2019-04-06 18:22:45 +00:00
|
|
|
|
2012-04-04 16:06:00 +00:00
|
|
|
:sign
|
2016-12-06 20:52:59 +00:00
|
|
|
@rem Skip signing unless the `sign` option was specified.
|
|
|
|
if not defined sign goto licensertf
|
2012-04-04 16:06:00 +00:00
|
|
|
|
2016-10-18 10:26:39 +00:00
|
|
|
call tools\sign.bat Release\node.exe
|
2022-05-29 04:19:04 +00:00
|
|
|
if errorlevel 1 echo Failed to sign exe, got error code %errorlevel%&goto exit
|
2011-11-23 02:17:12 +00:00
|
|
|
|
2012-04-04 16:06:00 +00:00
|
|
|
:licensertf
|
|
|
|
@rem Skip license.rtf generation if not requested.
|
2018-09-21 16:30:08 +00:00
|
|
|
if not defined licensertf goto stage_package
|
2012-04-04 16:06:00 +00:00
|
|
|
|
2020-06-22 09:22:42 +00:00
|
|
|
set "use_x64_node_exe=false"
|
|
|
|
if "%target_arch%"=="arm64" if "%PROCESSOR_ARCHITECTURE%"=="AMD64" set "use_x64_node_exe=true"
|
2022-12-24 20:20:39 +00:00
|
|
|
set "x64_node_exe=temp-vcbuild\node-x64-cross-compiling.exe"
|
2020-06-22 09:22:42 +00:00
|
|
|
if "%use_x64_node_exe%"=="true" (
|
|
|
|
echo Cross-compilation to ARM64 detected. We'll use the x64 Node executable for license2rtf.
|
|
|
|
if not exist "%x64_node_exe%" (
|
|
|
|
echo Downloading x64 node.exe...
|
|
|
|
if not exist "temp-vcbuild" mkdir temp-vcbuild
|
2022-12-24 20:20:39 +00:00
|
|
|
powershell -c "Invoke-WebRequest -Uri 'https://nodejs.org/dist/latest/win-x64/node.exe' -OutFile '%x64_node_exe%'"
|
2020-06-22 09:22:42 +00:00
|
|
|
)
|
|
|
|
if not exist "%x64_node_exe%" (
|
|
|
|
echo Could not find the Node executable at the given x64_node_exe path. Aborting.
|
|
|
|
set exit_code=1
|
|
|
|
goto exit
|
|
|
|
)
|
2022-05-29 04:19:04 +00:00
|
|
|
%x64_node_exe% tools\license2rtf.mjs < LICENSE > %config%\license.rtf
|
2020-06-22 09:22:42 +00:00
|
|
|
) else (
|
2022-05-29 04:19:04 +00:00
|
|
|
%node_exe% tools\license2rtf.mjs < LICENSE > %config%\license.rtf
|
2020-06-22 09:22:42 +00:00
|
|
|
)
|
|
|
|
|
2022-05-29 04:19:04 +00:00
|
|
|
if errorlevel 1 echo Failed to generate license.rtf, got error code %errorlevel%&goto exit
|
2012-04-04 16:06:00 +00:00
|
|
|
|
2018-09-21 16:30:08 +00:00
|
|
|
:stage_package
|
|
|
|
if not defined stage_package goto install-doctools
|
|
|
|
|
2016-03-24 17:53:42 +00:00
|
|
|
echo Creating package...
|
|
|
|
cd Release
|
2018-11-07 21:06:33 +00:00
|
|
|
rmdir /S /Q %TARGET_NAME% > nul 2> nul
|
|
|
|
mkdir %TARGET_NAME% > nul 2> nul
|
|
|
|
mkdir %TARGET_NAME%\node_modules > nul 2>nul
|
2016-03-24 17:53:42 +00:00
|
|
|
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y node.exe %TARGET_NAME%\ > nul
|
2016-03-24 17:53:42 +00:00
|
|
|
if errorlevel 1 echo Cannot copy node.exe && goto package_error
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y ..\LICENSE %TARGET_NAME%\ > nul
|
2016-03-24 17:53:42 +00:00
|
|
|
if errorlevel 1 echo Cannot copy LICENSE && goto package_error
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y ..\README.md %TARGET_NAME%\ > nul
|
2016-03-24 17:53:42 +00:00
|
|
|
if errorlevel 1 echo Cannot copy README.md && goto package_error
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y ..\CHANGELOG.md %TARGET_NAME%\ > nul
|
2016-03-24 17:53:42 +00:00
|
|
|
if errorlevel 1 echo Cannot copy CHANGELOG.md && goto package_error
|
2022-06-02 15:39:08 +00:00
|
|
|
|
|
|
|
if not defined nonpm (
|
|
|
|
robocopy ..\deps\npm %TARGET_NAME%\node_modules\npm /e /xd test > nul
|
|
|
|
if errorlevel 8 echo Cannot copy npm package && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npm %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npm && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npm.cmd %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npm.cmd && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npx %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npx && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npx.cmd %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npx.cmd && goto package_error
|
2024-03-27 20:39:55 +00:00
|
|
|
copy /Y ..\deps\npm\bin\npm.ps1 %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npm.ps1 && goto package_error
|
|
|
|
copy /Y ..\deps\npm\bin\npx.ps1 %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy npx.ps1 && goto package_error
|
2022-06-02 15:39:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if not defined nocorepack (
|
|
|
|
robocopy ..\deps\corepack %TARGET_NAME%\node_modules\corepack /e /xd test > nul
|
|
|
|
if errorlevel 8 echo Cannot copy corepack package && goto package_error
|
|
|
|
copy /Y ..\deps\corepack\shims\nodewin\corepack %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy corepack && goto package_error
|
|
|
|
copy /Y ..\deps\corepack\shims\nodewin\corepack.cmd %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy corepack.cmd && goto package_error
|
|
|
|
)
|
|
|
|
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y ..\tools\msvs\nodevars.bat %TARGET_NAME%\ > nul
|
2016-08-11 19:18:16 +00:00
|
|
|
if errorlevel 1 echo Cannot copy nodevars.bat && goto package_error
|
2018-11-07 21:06:33 +00:00
|
|
|
copy /Y ..\tools\msvs\install_tools\*.* %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy install_tools scripts && goto package_error
|
build: fix various shared library build issues
Node.js unofficially supports a shared library variant where the
main node executable is a thin wrapper around node.dll/libnode.so.
The key benefit of this is to support embedding Node.js in other
applications.
Since Node.js 12 there have been a number of issues preventing the
shared library build from working correctly, primarily on Windows:
* A number of functions used executables such as `mksnapshot` are
not exported from `libnode.dll` using a `NODE_EXTERN` attribute
* A dependency on the `Winmm` system library is missing
* Incorrect defines on executable targets leads to `node.exe`
claiming to export a number of functions that are actually in
`libnode.dll`
* Because `node.exe` attempts to export symbols, `node.lib` gets
generated causing native extensions to try to link against
`node.exe` not `libnode.dll`.
* Similarly, because `node.dll` was renamed to `libnode.dll`,
native extensions don't know to look for `libnode.lib` rather
than `node.lib`.
* On macOS an RPATH is added to find `libnode.dylib` relative to
`node` in the same folder. This works fine from the
`out/Release` folder but not from an installed prefix, where
`node` will be in `bin/` and `libnode.dylib` will be in `lib/`.
* Similarly on Linux, no RPATH is added so LD_LIBRARY_PATH needs
setting correctly for `bin/node` to find `lib/libnode.so`.
For the `libnode.lib` vs `node.lib` issue there are two possible
options:
1. Ensure `node.lib` from `node.exe` does not get generated, and
instead copy `libnode.lib` to `node.lib`. This means addons
compiled when referencing the correct `node.lib` file will
correctly depend on `libnode.dll`. The down side is that
native addons compiled with stock Node.js will still try to
resolve symbols against node.exe rather than libnode.dll.
2. After building `libnode.dll`, dump the exports using `dumpbin`,
and process this to generate a `node.def` file to be linked into
`node.exe` with the `/DEF:node.def` flag. The export entries
in `node.def` will all read
```
my_symbol=libnode.my_symbol
```
so that `node.exe` will redirect all exported symbols back to
`libnode.dll`. This has the benefit that addons compiled with
stock Node.js will load correctly into `node.exe` from a shared
library build, but means that every embedding executable also
needs to perform this same trick.
I went with the first option as it is the cleaner of the two
solutions in my opinion. Projects wishing to generate a shared
library variant of Node.js can now, for example,
```
.\vcbuild dll package vs
```
to generate a full node installation including `libnode.dll`,
`Release\node.lib`, and all the necessary headers. Native addons
can then be built against the shared library build easily by
specifying the correct `nodedir` option.
For example
```
>npx node-gyp configure --nodedir
C:\Users\User\node\Release\node-v18.0.0-win-x64
...
>npx node-gyp build
...
>dumpbin /dependents build\Release\binding.node
Microsoft (R) COFF/PE Dumper Version 14.29.30136.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file build\Release\binding.node
File Type: DLL
Image has the following dependencies:
KERNEL32.dll
libnode.dll
VCRUNTIME140.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
...
```
PR-URL: https://github.com/nodejs/node/pull/41850
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2022-02-04 10:12:57 +00:00
|
|
|
if defined dll (
|
|
|
|
copy /Y libnode.dll %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy libnode.dll && goto package_error
|
|
|
|
|
2024-03-30 17:14:48 +00:00
|
|
|
copy /Y libnode.lib %TARGET_NAME%\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy libnode.lib && goto package_error
|
|
|
|
|
build: fix various shared library build issues
Node.js unofficially supports a shared library variant where the
main node executable is a thin wrapper around node.dll/libnode.so.
The key benefit of this is to support embedding Node.js in other
applications.
Since Node.js 12 there have been a number of issues preventing the
shared library build from working correctly, primarily on Windows:
* A number of functions used executables such as `mksnapshot` are
not exported from `libnode.dll` using a `NODE_EXTERN` attribute
* A dependency on the `Winmm` system library is missing
* Incorrect defines on executable targets leads to `node.exe`
claiming to export a number of functions that are actually in
`libnode.dll`
* Because `node.exe` attempts to export symbols, `node.lib` gets
generated causing native extensions to try to link against
`node.exe` not `libnode.dll`.
* Similarly, because `node.dll` was renamed to `libnode.dll`,
native extensions don't know to look for `libnode.lib` rather
than `node.lib`.
* On macOS an RPATH is added to find `libnode.dylib` relative to
`node` in the same folder. This works fine from the
`out/Release` folder but not from an installed prefix, where
`node` will be in `bin/` and `libnode.dylib` will be in `lib/`.
* Similarly on Linux, no RPATH is added so LD_LIBRARY_PATH needs
setting correctly for `bin/node` to find `lib/libnode.so`.
For the `libnode.lib` vs `node.lib` issue there are two possible
options:
1. Ensure `node.lib` from `node.exe` does not get generated, and
instead copy `libnode.lib` to `node.lib`. This means addons
compiled when referencing the correct `node.lib` file will
correctly depend on `libnode.dll`. The down side is that
native addons compiled with stock Node.js will still try to
resolve symbols against node.exe rather than libnode.dll.
2. After building `libnode.dll`, dump the exports using `dumpbin`,
and process this to generate a `node.def` file to be linked into
`node.exe` with the `/DEF:node.def` flag. The export entries
in `node.def` will all read
```
my_symbol=libnode.my_symbol
```
so that `node.exe` will redirect all exported symbols back to
`libnode.dll`. This has the benefit that addons compiled with
stock Node.js will load correctly into `node.exe` from a shared
library build, but means that every embedding executable also
needs to perform this same trick.
I went with the first option as it is the cleaner of the two
solutions in my opinion. Projects wishing to generate a shared
library variant of Node.js can now, for example,
```
.\vcbuild dll package vs
```
to generate a full node installation including `libnode.dll`,
`Release\node.lib`, and all the necessary headers. Native addons
can then be built against the shared library build easily by
specifying the correct `nodedir` option.
For example
```
>npx node-gyp configure --nodedir
C:\Users\User\node\Release\node-v18.0.0-win-x64
...
>npx node-gyp build
...
>dumpbin /dependents build\Release\binding.node
Microsoft (R) COFF/PE Dumper Version 14.29.30136.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file build\Release\binding.node
File Type: DLL
Image has the following dependencies:
KERNEL32.dll
libnode.dll
VCRUNTIME140.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
...
```
PR-URL: https://github.com/nodejs/node/pull/41850
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2022-02-04 10:12:57 +00:00
|
|
|
mkdir %TARGET_NAME%\Release > nul
|
|
|
|
copy /Y node.def %TARGET_NAME%\Release\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy node.def && goto package_error
|
|
|
|
|
2024-03-30 17:14:48 +00:00
|
|
|
python ..\tools\install.py install --root-dir .. --config-gypi-path %CD%\..\config.gypi --dest-dir %CD%\%TARGET_NAME% --prefix \ --headers-only
|
build: fix various shared library build issues
Node.js unofficially supports a shared library variant where the
main node executable is a thin wrapper around node.dll/libnode.so.
The key benefit of this is to support embedding Node.js in other
applications.
Since Node.js 12 there have been a number of issues preventing the
shared library build from working correctly, primarily on Windows:
* A number of functions used executables such as `mksnapshot` are
not exported from `libnode.dll` using a `NODE_EXTERN` attribute
* A dependency on the `Winmm` system library is missing
* Incorrect defines on executable targets leads to `node.exe`
claiming to export a number of functions that are actually in
`libnode.dll`
* Because `node.exe` attempts to export symbols, `node.lib` gets
generated causing native extensions to try to link against
`node.exe` not `libnode.dll`.
* Similarly, because `node.dll` was renamed to `libnode.dll`,
native extensions don't know to look for `libnode.lib` rather
than `node.lib`.
* On macOS an RPATH is added to find `libnode.dylib` relative to
`node` in the same folder. This works fine from the
`out/Release` folder but not from an installed prefix, where
`node` will be in `bin/` and `libnode.dylib` will be in `lib/`.
* Similarly on Linux, no RPATH is added so LD_LIBRARY_PATH needs
setting correctly for `bin/node` to find `lib/libnode.so`.
For the `libnode.lib` vs `node.lib` issue there are two possible
options:
1. Ensure `node.lib` from `node.exe` does not get generated, and
instead copy `libnode.lib` to `node.lib`. This means addons
compiled when referencing the correct `node.lib` file will
correctly depend on `libnode.dll`. The down side is that
native addons compiled with stock Node.js will still try to
resolve symbols against node.exe rather than libnode.dll.
2. After building `libnode.dll`, dump the exports using `dumpbin`,
and process this to generate a `node.def` file to be linked into
`node.exe` with the `/DEF:node.def` flag. The export entries
in `node.def` will all read
```
my_symbol=libnode.my_symbol
```
so that `node.exe` will redirect all exported symbols back to
`libnode.dll`. This has the benefit that addons compiled with
stock Node.js will load correctly into `node.exe` from a shared
library build, but means that every embedding executable also
needs to perform this same trick.
I went with the first option as it is the cleaner of the two
solutions in my opinion. Projects wishing to generate a shared
library variant of Node.js can now, for example,
```
.\vcbuild dll package vs
```
to generate a full node installation including `libnode.dll`,
`Release\node.lib`, and all the necessary headers. Native addons
can then be built against the shared library build easily by
specifying the correct `nodedir` option.
For example
```
>npx node-gyp configure --nodedir
C:\Users\User\node\Release\node-v18.0.0-win-x64
...
>npx node-gyp build
...
>dumpbin /dependents build\Release\binding.node
Microsoft (R) COFF/PE Dumper Version 14.29.30136.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file build\Release\binding.node
File Type: DLL
Image has the following dependencies:
KERNEL32.dll
libnode.dll
VCRUNTIME140.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
...
```
PR-URL: https://github.com/nodejs/node/pull/41850
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2022-02-04 10:12:57 +00:00
|
|
|
if errorlevel 1 echo Cannot install headers && goto package_error
|
2024-03-30 17:14:48 +00:00
|
|
|
|
|
|
|
if exist ..\Debug (
|
|
|
|
mkdir %TARGET_NAME%\Debug > nul
|
|
|
|
|
|
|
|
copy /Y ..\Debug\libnode.dll %TARGET_NAME%\Debug\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy libnode.dll && goto package_error
|
|
|
|
|
|
|
|
copy /Y ..\Debug\libnode.lib %TARGET_NAME%\Debug\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy libnode.lib && goto package_error
|
|
|
|
|
|
|
|
copy /Y ..\Debug\node.def %TARGET_NAME%\Debug\ > nul
|
|
|
|
if errorlevel 1 echo Cannot copy node.def && goto package_error
|
|
|
|
)
|
build: fix various shared library build issues
Node.js unofficially supports a shared library variant where the
main node executable is a thin wrapper around node.dll/libnode.so.
The key benefit of this is to support embedding Node.js in other
applications.
Since Node.js 12 there have been a number of issues preventing the
shared library build from working correctly, primarily on Windows:
* A number of functions used executables such as `mksnapshot` are
not exported from `libnode.dll` using a `NODE_EXTERN` attribute
* A dependency on the `Winmm` system library is missing
* Incorrect defines on executable targets leads to `node.exe`
claiming to export a number of functions that are actually in
`libnode.dll`
* Because `node.exe` attempts to export symbols, `node.lib` gets
generated causing native extensions to try to link against
`node.exe` not `libnode.dll`.
* Similarly, because `node.dll` was renamed to `libnode.dll`,
native extensions don't know to look for `libnode.lib` rather
than `node.lib`.
* On macOS an RPATH is added to find `libnode.dylib` relative to
`node` in the same folder. This works fine from the
`out/Release` folder but not from an installed prefix, where
`node` will be in `bin/` and `libnode.dylib` will be in `lib/`.
* Similarly on Linux, no RPATH is added so LD_LIBRARY_PATH needs
setting correctly for `bin/node` to find `lib/libnode.so`.
For the `libnode.lib` vs `node.lib` issue there are two possible
options:
1. Ensure `node.lib` from `node.exe` does not get generated, and
instead copy `libnode.lib` to `node.lib`. This means addons
compiled when referencing the correct `node.lib` file will
correctly depend on `libnode.dll`. The down side is that
native addons compiled with stock Node.js will still try to
resolve symbols against node.exe rather than libnode.dll.
2. After building `libnode.dll`, dump the exports using `dumpbin`,
and process this to generate a `node.def` file to be linked into
`node.exe` with the `/DEF:node.def` flag. The export entries
in `node.def` will all read
```
my_symbol=libnode.my_symbol
```
so that `node.exe` will redirect all exported symbols back to
`libnode.dll`. This has the benefit that addons compiled with
stock Node.js will load correctly into `node.exe` from a shared
library build, but means that every embedding executable also
needs to perform this same trick.
I went with the first option as it is the cleaner of the two
solutions in my opinion. Projects wishing to generate a shared
library variant of Node.js can now, for example,
```
.\vcbuild dll package vs
```
to generate a full node installation including `libnode.dll`,
`Release\node.lib`, and all the necessary headers. Native addons
can then be built against the shared library build easily by
specifying the correct `nodedir` option.
For example
```
>npx node-gyp configure --nodedir
C:\Users\User\node\Release\node-v18.0.0-win-x64
...
>npx node-gyp build
...
>dumpbin /dependents build\Release\binding.node
Microsoft (R) COFF/PE Dumper Version 14.29.30136.0
Copyright (C) Microsoft Corporation. All rights reserved.
Dump of file build\Release\binding.node
File Type: DLL
Image has the following dependencies:
KERNEL32.dll
libnode.dll
VCRUNTIME140.dll
api-ms-win-crt-string-l1-1-0.dll
api-ms-win-crt-stdio-l1-1-0.dll
api-ms-win-crt-runtime-l1-1-0.dll
...
```
PR-URL: https://github.com/nodejs/node/pull/41850
Reviewed-By: Michael Dawson <midawson@redhat.com>
Reviewed-By: Beth Griggs <bgriggs@redhat.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
2022-02-04 10:12:57 +00:00
|
|
|
)
|
2018-09-21 16:30:08 +00:00
|
|
|
cd ..
|
2016-03-24 17:53:42 +00:00
|
|
|
|
2018-09-21 16:30:08 +00:00
|
|
|
:package
|
|
|
|
if not defined package goto msi
|
|
|
|
cd Release
|
2018-11-07 21:06:33 +00:00
|
|
|
echo Creating %TARGET_NAME%.7z
|
|
|
|
del %TARGET_NAME%.7z > nul 2> nul
|
|
|
|
7z a -r -mx9 -t7z %TARGET_NAME%.7z %TARGET_NAME% > nul
|
|
|
|
if errorlevel 1 echo Cannot create %TARGET_NAME%.7z && goto package_error
|
2016-03-24 17:53:42 +00:00
|
|
|
|
2018-11-07 21:06:33 +00:00
|
|
|
echo Creating %TARGET_NAME%.zip
|
|
|
|
del %TARGET_NAME%.zip > nul 2> nul
|
|
|
|
7z a -r -mx9 -tzip %TARGET_NAME%.zip %TARGET_NAME% > nul
|
|
|
|
if errorlevel 1 echo Cannot create %TARGET_NAME%.zip && goto package_error
|
2016-03-24 17:53:42 +00:00
|
|
|
|
|
|
|
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-14 21:51:49 +00:00
|
|
|
:msi
|
|
|
|
@rem Skip msi generation if not requested
|
2018-06-23 19:42:12 +00:00
|
|
|
if not defined msi goto install-doctools
|
2013-03-01 00:56:37 +00:00
|
|
|
|
|
|
|
:msibuild
|
2015-08-13 16:14:34 +00:00
|
|
|
echo Building node-v%FULLVERSION%-%target_arch%.msi
|
2017-11-17 17:54:06 +00:00
|
|
|
set "msbsdk="
|
|
|
|
if defined WindowsSDKVersion set "msbsdk=/p:WindowsTargetPlatformVersion=%WindowsSDKVersion:~0,-1%"
|
2023-03-22 22:16:57 +00:00
|
|
|
msbuild "%~dp0tools\msvs\msi\nodemsi.sln" /m /t:Restore,Clean,Build %msbsdk% /p:PlatformToolset=%PLATFORM_TOOLSET% /p:Configuration=%config% /p:Platform=%target_arch% /p:NodeVersion=%NODE_VERSION% /p:FullVersion=%FULLVERSION% /p:DistTypeDir=%DISTTYPEDIR% /clp:NoSummary;NoItemAndPropertyList;Verbosity=minimal /nologo
|
2011-09-14 21:51:49 +00:00
|
|
|
if errorlevel 1 goto exit
|
|
|
|
|
2016-12-06 20:52:59 +00:00
|
|
|
if not defined sign goto upload
|
2016-10-18 10:26:39 +00:00
|
|
|
call tools\sign.bat node-v%FULLVERSION%-%target_arch%.msi
|
2022-05-29 04:19:04 +00:00
|
|
|
if errorlevel 1 echo Failed to sign msi, got error code %errorlevel%&goto exit
|
2011-11-23 02:17:12 +00:00
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
:upload
|
|
|
|
@rem Skip upload if not requested
|
2018-06-23 19:42:12 +00:00
|
|
|
if not defined upload goto install-doctools
|
2015-06-10 07:05:26 +00:00
|
|
|
|
|
|
|
if not defined SSHCONFIG (
|
|
|
|
echo SSHCONFIG is not set for upload
|
|
|
|
exit /b 1
|
|
|
|
)
|
2017-04-07 12:53:45 +00:00
|
|
|
|
2015-08-13 16:14:34 +00:00
|
|
|
if not defined STAGINGSERVER set STAGINGSERVER=node-www
|
2024-05-06 07:42:32 +00:00
|
|
|
if not defined CLOUDFLARE_ENDPOINT set CLOUDFLARE_ENDPOINT=https://07be8d2fbc940503ca1be344714cb0d1.r2.cloudflarestorage.com
|
|
|
|
if not defined CLOUDFLARE_BUCKET set CLOUDFLARE_BUCKET=dist-staging
|
|
|
|
if not defined CLOUDFLARE_PROFILE set CLOUDFLARE_PROFILE=worker
|
2015-08-31 07:03:26 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "mkdir -p nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%"
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -F %SSHCONFIG% Release\node.exe %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.exe --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -F %SSHCONFIG% Release\node.lib %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node.lib --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 17:53:42 +00:00
|
|
|
scp -F %SSHCONFIG% Release\node_pdb.zip %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.zip
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.zip s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.zip --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2016-03-24 17:53:42 +00:00
|
|
|
scp -F %SSHCONFIG% Release\node_pdb.7z %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.7z
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.7z s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/win-%target_arch%/node_pdb.7z --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2018-11-07 21:06:33 +00:00
|
|
|
scp -F %SSHCONFIG% Release\%TARGET_NAME%.7z %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.7z
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.7z s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.7z --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2018-11-07 21:06:33 +00:00
|
|
|
scp -F %SSHCONFIG% Release\%TARGET_NAME%.zip %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.zip
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.zip s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.zip --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2015-08-31 07:03:26 +00:00
|
|
|
scp -F %SSHCONFIG% node-v%FULLVERSION%-%target_arch%.msi %STAGINGSERVER%:nodejs/%DISTTYPEDIR%/v%FULLVERSION%/
|
2018-04-05 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
2024-05-06 07:42:32 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "aws s3 cp nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi s3://%CLOUDFLARE_BUCKET%/nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi --endpoint=%CLOUDFLARE_ENDPOINT% --profile=%CLOUDFLARE_PROFILE%"
|
|
|
|
if errorlevel 1 goto exit
|
2018-11-07 21:06:33 +00:00
|
|
|
ssh -F %SSHCONFIG% %STAGINGSERVER% "touch nodejs/%DISTTYPEDIR%/v%FULLVERSION%/node-v%FULLVERSION%-%target_arch%.msi.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.zip.done nodejs/%DISTTYPEDIR%/v%FULLVERSION%/%TARGET_NAME%.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 13:59:10 +00:00
|
|
|
if errorlevel 1 goto exit
|
|
|
|
|
2015-06-10 07:05:26 +00:00
|
|
|
|
2018-06-23 19:42:12 +00:00
|
|
|
:install-doctools
|
2018-12-18 13:11:54 +00:00
|
|
|
REM only install if building doc OR testing doctool OR building addons
|
|
|
|
if not defined doc if not defined build_addons (
|
2018-06-23 19:42:12 +00:00
|
|
|
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-18 21:39:06 +00:00
|
|
|
%npm_exe% ci
|
2018-06-23 19:42:12 +00: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 19:16:47 +00: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 (
|
2021-06-08 10:44:33 +00:00
|
|
|
%node_exe% tools\doc\generate.mjs --node-version=v%FULLVERSION% %%F --output-directory=%%~dF%%~pF
|
2018-03-28 19:16:47 +00:00
|
|
|
)
|
|
|
|
|
2011-08-26 22:04:47 +00:00
|
|
|
:run
|
|
|
|
@rem Run tests if requested.
|
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
if not defined build_addons goto build-js-native-api-tests
|
2016-03-24 07:52:27 +00:00
|
|
|
if not exist "%node_exe%" (
|
|
|
|
echo Failed to find node.exe
|
2018-11-17 20:34:54 +00:00
|
|
|
goto build-js-native-api-tests
|
2016-03-24 07:52:27 +00:00
|
|
|
)
|
2017-03-20 21:55:26 +00:00
|
|
|
echo Building addons
|
2016-03-24 07:52:27 +00:00
|
|
|
:: clear
|
|
|
|
for /d %%F in (test\addons\??_*) do (
|
|
|
|
rd /s /q %%F
|
|
|
|
)
|
|
|
|
:: generate
|
2021-06-08 10:44:33 +00:00
|
|
|
"%node_exe%" tools\doc\addon-verify.mjs
|
2016-09-05 14:08:03 +00:00
|
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
2016-03-24 07:52:27 +00:00
|
|
|
:: building addons
|
2018-06-19 09:42:31 +00:00
|
|
|
setlocal
|
2024-04-26 11:36:13 +00:00
|
|
|
python "%~dp0tools\build_addons.py" "%~dp0test\addons" --config %config%
|
2018-06-19 09:42:31 +00:00
|
|
|
if errorlevel 1 exit /b 1
|
|
|
|
endlocal
|
2017-03-20 21:55:26 +00:00
|
|
|
|
2018-11-17 20:34:54 +00:00
|
|
|
:build-js-native-api-tests
|
|
|
|
if not defined build_js_native_api_tests goto build-node-api-tests
|
|
|
|
if not exist "%node_exe%" (
|
|
|
|
echo Failed to find node.exe
|
|
|
|
goto build-node-api-tests
|
|
|
|
)
|
|
|
|
echo Building js-native-api
|
|
|
|
:: clear
|
|
|
|
for /d %%F in (test\js-native-api\??_*) do (
|
|
|
|
rd /s /q %%F
|
|
|
|
)
|
|
|
|
:: building js-native-api
|
|
|
|
setlocal
|
2024-04-26 11:36:13 +00:00
|
|
|
python "%~dp0tools\build_addons.py" "%~dp0test\js-native-api" --config %config%
|
2018-11-17 20:34:54 +00:00
|
|
|
if errorlevel 1 exit /b 1
|
|
|
|
endlocal
|
|
|
|
goto build-node-api-tests
|
|
|
|
|
|
|
|
:build-node-api-tests
|
2020-05-01 11:07:15 +00:00
|
|
|
if not defined build_node_api_tests goto run-tests
|
2017-03-20 21:55:26 +00:00
|
|
|
if not exist "%node_exe%" (
|
|
|
|
echo Failed to find node.exe
|
2020-05-01 11:07:15 +00:00
|
|
|
goto run-tests
|
2017-03-20 21:55:26 +00:00
|
|
|
)
|
2018-11-17 20:34:54 +00:00
|
|
|
echo Building node-api
|
2017-03-20 21:55:26 +00:00
|
|
|
:: clear
|
2018-11-17 20:34:54 +00:00
|
|
|
for /d %%F in (test\node-api\??_*) do (
|
2017-03-20 21:55:26 +00:00
|
|
|
rd /s /q %%F
|
|
|
|
)
|
2018-11-17 20:34:54 +00:00
|
|
|
:: building node-api
|
2018-08-29 15:18:02 +00:00
|
|
|
setlocal
|
2024-04-26 11:36:13 +00:00
|
|
|
python "%~dp0tools\build_addons.py" "%~dp0test\node-api" --config %config%
|
2018-08-29 15:18:02 +00:00
|
|
|
if errorlevel 1 exit /b 1
|
|
|
|
endlocal
|
2016-03-24 07:52:27 +00:00
|
|
|
goto run-tests
|
|
|
|
|
2012-06-13 22:55:29 +00:00
|
|
|
:run-tests
|
2017-04-17 04:01:00 +00: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
|
2021-11-24 05:30:21 +00:00
|
|
|
python tools\test.py --mode=release --check-deopts parallel sequential
|
2017-04-17 04:01:00 +00:00
|
|
|
if defined test_node_inspect goto node-test-inspect
|
|
|
|
goto node-tests
|
|
|
|
|
|
|
|
:node-test-inspect
|
2016-12-11 22:37:25 +00:00
|
|
|
set USE_EMBEDDED_NODE_INSPECT=1
|
2019-04-06 18:22:45 +00:00
|
|
|
%node_exe% tools\test-npm-package.js --install deps\node-inspect test
|
2016-12-11 22:37:25 +00:00
|
|
|
goto node-tests
|
|
|
|
|
|
|
|
:node-tests
|
2017-02-22 22:05:19 +00: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-28 22:24:52 +00:00
|
|
|
if "%test_args%"=="" goto test-v8
|
2015-02-28 01:42:49 +00:00
|
|
|
if "%config%"=="Debug" set test_args=--mode=debug %test_args%
|
|
|
|
if "%config%"=="Release" set test_args=--mode=release %test_args%
|
2017-11-29 18:48:33 +00:00
|
|
|
if defined no_cctest echo Skipping cctest because no-cctest was specified && goto run-test-py
|
2018-06-19 19:17:46 +00:00
|
|
|
if not exist "%config%\cctest.exe" echo cctest.exe not found. Run "vcbuild test" or "vcbuild cctest" to build it. && goto run-test-py
|
2016-08-10 09:47:46 +00:00
|
|
|
echo running 'cctest %cctest_args%'
|
|
|
|
"%config%\cctest" %cctest_args%
|
2019-11-30 01:13:48 +00:00
|
|
|
if %errorlevel% neq 0 set exit_code=%errorlevel%
|
2024-05-23 18:33:40 +00:00
|
|
|
echo running '%node_exe% test\embedding\test-embedding.js'
|
|
|
|
"%node_exe%" test\embedding\test-embedding.js
|
|
|
|
if %errorlevel% neq 0 set exit_code=%errorlevel%
|
2017-11-29 18:48:33 +00:00
|
|
|
:run-test-py
|
2018-02-07 10:23:26 +00:00
|
|
|
echo running 'python tools\test.py %test_args%'
|
|
|
|
python tools\test.py %test_args%
|
2019-11-30 01:13:48 +00:00
|
|
|
if %errorlevel% neq 0 set exit_code=%errorlevel%
|
2017-10-09 12:50:24 +00:00
|
|
|
goto test-v8
|
2017-06-28 22:24:52 +00:00
|
|
|
|
|
|
|
:test-v8
|
2017-09-08 11:44:58 +00:00
|
|
|
if not defined custom_v8_test goto lint-cpp
|
2017-06-28 22:24:52 +00:00
|
|
|
call tools/test-v8.bat
|
|
|
|
if errorlevel 1 goto exit
|
2017-09-08 11:44:58 +00:00
|
|
|
goto lint-cpp
|
2017-03-15 03:12:32 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
:lint-cpp
|
|
|
|
if not defined lint_cpp goto lint-js
|
2019-06-06 16:16:08 +00:00
|
|
|
if defined NODEJS_MAKE goto run-make-lint
|
|
|
|
where make > NUL 2>&1 && make -v | findstr /C:"GNU Make" 1> NUL
|
|
|
|
if "%ERRORLEVEL%"=="0" set "NODEJS_MAKE=make PYTHON=python" & goto run-make-lint
|
2019-09-19 13:25:37 +00:00
|
|
|
where wsl > NUL 2>&1
|
2019-06-06 16:16:08 +00:00
|
|
|
if "%ERRORLEVEL%"=="0" set "NODEJS_MAKE=wsl make" & goto run-make-lint
|
|
|
|
echo Could not find GNU Make, needed for linting C/C++
|
2024-03-26 07:05:20 +00:00
|
|
|
echo Alternatively, you can use WSL
|
2017-09-08 11:44:58 +00:00
|
|
|
goto lint-js
|
2017-07-06 23:03:27 +00:00
|
|
|
|
2019-06-06 16:16:08 +00:00
|
|
|
:run-make-lint
|
|
|
|
%NODEJS_MAKE% lint-cpp
|
2024-09-06 17:31:45 +00:00
|
|
|
goto lint-js-build
|
|
|
|
|
|
|
|
:lint-js-build
|
|
|
|
if not defined lint_js_build if not defined lint_js if not defined lint_js_fix goto lint-md-build
|
|
|
|
cd tools\eslint
|
|
|
|
%npm_exe% ci
|
|
|
|
cd ..\..
|
2017-03-15 03:12:32 +00:00
|
|
|
|
2017-09-08 11:44:58 +00:00
|
|
|
:lint-js
|
2024-08-06 05:57:35 +00:00
|
|
|
if not defined lint_js goto lint-js-fix
|
2024-06-19 19:54:08 +00:00
|
|
|
if not exist tools\eslint\node_modules\eslint goto no-lint
|
2017-09-08 11:44:58 +00:00
|
|
|
echo running lint-js
|
2024-06-19 19:54:08 +00:00
|
|
|
%node_exe% tools\eslint\node_modules\eslint\bin\eslint.js --cache --max-warnings=0 --report-unused-disable-directives --rule "@stylistic/js/linebreak-style: 0" eslint.config.mjs benchmark doc lib test tools
|
2024-08-06 05:57:35 +00:00
|
|
|
goto lint-js-fix
|
|
|
|
|
|
|
|
:lint-js-fix
|
|
|
|
if not defined lint_js_fix goto lint-md-build
|
|
|
|
if not exist tools\eslint\node_modules\eslint goto no-lint
|
|
|
|
echo running lint-js-fix
|
|
|
|
%node_exe% tools\eslint\node_modules\eslint\bin\eslint.js --cache --max-warnings=0 --report-unused-disable-directives --rule "@stylistic/js/linebreak-style: 0" eslint.config.mjs benchmark doc lib test tools --fix
|
2018-03-28 19:16:47 +00:00
|
|
|
goto lint-md-build
|
2016-03-10 03:40:54 +00:00
|
|
|
|
2016-03-13 23:08:11 +00: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 19:16:47 +00:00
|
|
|
goto lint-md-build
|
|
|
|
|
|
|
|
:lint-md-build
|
|
|
|
if not defined lint_md_build goto lint-md
|
2018-09-06 20:17:54 +00:00
|
|
|
echo "Deprecated no-op target 'lint_md_build'"
|
2018-03-28 19:16:47 +00:00
|
|
|
goto lint-md
|
|
|
|
|
|
|
|
:lint-md
|
2024-03-26 07:05:20 +00:00
|
|
|
if not defined lint_md goto format-md
|
2018-03-28 19:16:47 +00:00
|
|
|
echo Running Markdown linter on docs...
|
|
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
set lint_md_files=
|
2018-09-06 20:17:54 +00:00
|
|
|
for /D %%D IN (doc\*) do (
|
2018-03-28 19:16:47 +00:00
|
|
|
for %%F IN (%%D\*.md) do (
|
2018-09-06 20:17:54 +00:00
|
|
|
set "lint_md_files="%%F" !lint_md_files!"
|
2018-03-28 19:16:47 +00:00
|
|
|
)
|
|
|
|
)
|
2021-09-20 18:54:58 +00:00
|
|
|
%node_exe% tools\lint-md\lint-md.mjs %lint_md_files%
|
2018-03-28 19:16:47 +00:00
|
|
|
ENDLOCAL
|
2024-03-26 07:05:20 +00:00
|
|
|
goto format-md
|
2016-03-13 23:08:11 +00:00
|
|
|
|
2021-09-22 20:44:06 +00:00
|
|
|
:format-md
|
2024-03-26 07:05:20 +00:00
|
|
|
if not defined format_md goto exit
|
2021-09-22 20:44:06 +00:00
|
|
|
echo Running Markdown formatter on docs...
|
|
|
|
SETLOCAL ENABLEDELAYEDEXPANSION
|
|
|
|
set lint_md_files=
|
|
|
|
for /D %%D IN (doc\*) do (
|
|
|
|
for %%F IN (%%D\*.md) do (
|
|
|
|
set "lint_md_files="%%F" !lint_md_files!"
|
|
|
|
)
|
|
|
|
)
|
|
|
|
%node_exe% tools\lint-md\lint-md.mjs --format %lint_md_files%
|
|
|
|
ENDLOCAL
|
|
|
|
goto exit
|
|
|
|
|
2015-02-28 01:42:49 +00:00
|
|
|
:create-msvs-files-failed
|
|
|
|
echo Failed to create vc project files.
|
2018-06-07 16:26:02 +00:00
|
|
|
del .used_configure_flags
|
2020-03-09 17:07:28 +00:00
|
|
|
set exit_code=1
|
2015-02-28 01:42:49 +00:00
|
|
|
goto exit
|
|
|
|
|
2011-08-24 06:14:56 +00:00
|
|
|
:help
|
2024-05-30 14:28:47 +00:00
|
|
|
echo vcbuild.bat [debug/release] [msi] [doc] [test/test-all/test-addons/test-doc/test-js-native-api/test-node-api/test-internet/test-tick-processor/test-known-issues/test-node-inspect/test-check-deopts/test-npm/test-v8/test-v8-intl/test-v8-benchmarks/test-v8-all] [ignore-flaky] [static/dll] [noprojgen] [projgen] [clang-cl] [small-icu/full-icu/without-intl] [nobuild] [nosnapshot] [nonpm] [nocorepack] [ltcg] [licensetf] [sign] [x64/arm64] [vs2022] [download-all] [enable-vtune] [lint/lint-ci/lint-js/lint-md] [lint-md-build] [format-md] [package] [build-release] [upload] [no-NODE-OPTIONS] [link-module path-to-module] [debug-http2] [debug-nghttp2] [clean] [cctest] [no-cctest] [openssl-no-asm]
|
2011-08-24 06:14:56 +00:00
|
|
|
echo Examples:
|
2017-09-14 13:27:13 +00: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
|
2022-11-22 08:28:19 +00:00
|
|
|
echo vcbuild.bat enable-vtune : builds Node.js with Intel VTune profiling support to profile JavaScript
|
2017-09-14 13:27:13 +00:00
|
|
|
echo vcbuild.bat link-module my_module.js : bundles my_module as built-in module
|
2018-03-28 19:16:47 +00:00
|
|
|
echo vcbuild.bat lint : runs the C++, documentation and JavaScript linter
|
2017-11-29 18:48:33 +00:00
|
|
|
echo vcbuild.bat no-cctest : skip building cctest.exe
|
2011-08-24 06:14:56 +00:00
|
|
|
goto exit
|
|
|
|
|
|
|
|
:exit
|
2019-12-13 03:36:14 +00:00
|
|
|
if %errorlevel% neq 0 exit /b %errorlevel%
|
2019-11-30 01:13:48 +00:00
|
|
|
exit /b %exit_code%
|
2013-03-01 20:03:44 +00:00
|
|
|
|
2017-06-28 22:24:52 +00:00
|
|
|
|
2013-03-01 20:03:44 +00:00
|
|
|
rem ***************
|
|
|
|
rem Subroutines
|
|
|
|
rem ***************
|
|
|
|
|
|
|
|
:getnodeversion
|
|
|
|
set NODE_VERSION=
|
2015-06-10 07:05:26 +00:00
|
|
|
set TAG=
|
|
|
|
set FULLVERSION=
|
2018-02-07 10:23:26 +00:00
|
|
|
|
|
|
|
for /F "usebackq tokens=*" %%i in (`python "%~dp0tools\getnodeversion.py"`) do set NODE_VERSION=%%i
|
2015-06-10 07:05:26 +00:00
|
|
|
if not defined NODE_VERSION (
|
2015-08-13 16:14:34 +00:00
|
|
|
echo Cannot determine current version of Node.js
|
2015-06-10 07:05:26 +00:00
|
|
|
exit /b 1
|
|
|
|
)
|
|
|
|
|
|
|
|
if not defined DISTTYPE set DISTTYPE=release
|
|
|
|
if "%DISTTYPE%"=="release" (
|
|
|
|
set FULLVERSION=%NODE_VERSION%
|
2017-06-28 18:09:00 +00:00
|
|
|
goto distexit
|
2015-06-10 07:05:26 +00: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 18:09:00 +00:00
|
|
|
|
|
|
|
:distexit
|
|
|
|
if not defined DISTTYPEDIR set DISTTYPEDIR=%DISTTYPE%
|
2018-11-07 21:06:33 +00:00
|
|
|
set TARGET_NAME=node-v%FULLVERSION%-win-%target_arch%
|
2017-06-28 18:09:00 +00:00
|
|
|
goto :EOF
|