2018-11-19 11:43:52 +01:00
|
|
|
from __future__ import print_function
|
|
|
|
|
2018-10-04 22:44:34 +02:00
|
|
|
import json
|
2016-11-17 07:57:04 +01:00
|
|
|
import sys
|
2016-05-19 12:29:40 +02:00
|
|
|
import errno
|
2020-10-22 15:27:38 +02:00
|
|
|
import argparse
|
2011-11-15 04:02:44 +01:00
|
|
|
import os
|
2011-12-18 23:53:07 +01:00
|
|
|
import pprint
|
2012-03-02 02:14:27 +01:00
|
|
|
import re
|
2012-09-15 03:06:25 +02:00
|
|
|
import shlex
|
2011-11-15 17:17:05 +01:00
|
|
|
import subprocess
|
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 02:13:14 +01:00
|
|
|
import shutil
|
2019-09-30 20:17:49 +02:00
|
|
|
import bz2
|
2019-10-21 13:26:02 +02:00
|
|
|
import io
|
2023-05-02 21:20:22 +02:00
|
|
|
from pathlib import Path
|
2019-09-30 20:17:49 +02:00
|
|
|
|
2019-10-14 14:51:48 +02:00
|
|
|
from distutils.version import StrictVersion
|
2010-10-26 03:17:19 +02:00
|
|
|
|
2017-11-26 14:30:08 +01:00
|
|
|
# If not run from node/, cd to node/.
|
2023-05-02 21:20:22 +02:00
|
|
|
os.chdir(Path(__file__).parent)
|
2017-11-26 14:30:08 +01:00
|
|
|
|
2018-06-16 21:28:34 +02:00
|
|
|
original_argv = sys.argv[1:]
|
|
|
|
|
2015-03-19 22:57:11 +01:00
|
|
|
# gcc and g++ as defaults matches what GYP's Makefile generator does,
|
|
|
|
# except on OS X.
|
|
|
|
CC = os.environ.get('CC', 'cc' if sys.platform == 'darwin' else 'gcc')
|
|
|
|
CXX = os.environ.get('CXX', 'c++' if sys.platform == 'darwin' else 'g++')
|
2012-03-05 16:55:24 +01:00
|
|
|
|
2023-05-02 21:20:22 +02:00
|
|
|
tools_path = Path('tools')
|
|
|
|
|
|
|
|
sys.path.insert(0, str(tools_path / 'gyp' / 'pylib'))
|
2013-05-21 18:26:42 +02:00
|
|
|
from gyp.common import GetFlavor
|
2010-11-02 00:03:32 +01:00
|
|
|
|
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 02:13:14 +01:00
|
|
|
# imports in tools/configure.d
|
2023-05-02 21:20:22 +02:00
|
|
|
sys.path.insert(0, str(tools_path / 'configure.d'))
|
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 02:13:14 +01:00
|
|
|
import nodedownload
|
|
|
|
|
2016-03-27 01:17:55 +01:00
|
|
|
# imports in tools/
|
2017-11-26 14:30:08 +01:00
|
|
|
sys.path.insert(0, 'tools')
|
2016-03-27 01:17:55 +01:00
|
|
|
import getmoduleversion
|
2019-05-23 11:57:31 +02:00
|
|
|
import getnapibuildversion
|
2021-03-09 22:29:20 +01:00
|
|
|
import getsharedopensslhasquic
|
2017-04-25 23:36:50 +02:00
|
|
|
from gyp_node import run_gyp
|
2021-07-07 18:19:00 +02:00
|
|
|
from utils import SearchFiles
|
2016-03-27 01:17:55 +01:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
# parse our options
|
2020-10-22 15:27:38 +02:00
|
|
|
parser = argparse.ArgumentParser()
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2015-08-12 17:53:33 +02:00
|
|
|
valid_os = ('win', 'mac', 'solaris', 'freebsd', 'openbsd', 'linux',
|
2023-02-22 05:18:56 +01:00
|
|
|
'android', 'aix', 'cloudabi', 'os400', 'ios')
|
2019-05-30 05:12:50 +02:00
|
|
|
valid_arch = ('arm', 'arm64', 'ia32', 'mips', 'mipsel', 'mips64el', 'ppc',
|
2022-02-11 09:52:24 +01:00
|
|
|
'ppc64', 'x64', 'x86', 'x86_64', 's390x', 'riscv64', 'loong64')
|
2015-04-03 06:33:34 +02:00
|
|
|
valid_arm_float_abi = ('soft', 'softfp', 'hard')
|
2015-12-08 21:53:06 +01:00
|
|
|
valid_arm_fpu = ('vfp', 'vfpv3', 'vfpv3-d16', 'neon')
|
2019-05-30 05:12:50 +02:00
|
|
|
valid_mips_arch = ('loongson', 'r1', 'r2', 'r6', 'rx')
|
|
|
|
valid_mips_fpu = ('fp32', 'fp64', 'fpxx')
|
|
|
|
valid_mips_float_abi = ('soft', 'hard')
|
2015-04-27 06:45:55 +02:00
|
|
|
valid_intl_modes = ('none', 'small-icu', 'full-icu', 'system-icu')
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_versions = json.loads((tools_path / 'icu' / 'icu_versions.json').read_text(encoding='utf-8'))
|
2015-04-27 06:45:55 +02:00
|
|
|
|
2022-08-24 04:41:29 +02:00
|
|
|
shareable_builtins = {'cjs_module_lexer/lexer': 'deps/cjs-module-lexer/lexer.js',
|
|
|
|
'cjs_module_lexer/dist/lexer': 'deps/cjs-module-lexer/dist/lexer.js',
|
|
|
|
'undici/undici': 'deps/undici/undici.js'
|
|
|
|
}
|
|
|
|
|
2015-04-27 06:45:55 +02:00
|
|
|
# create option groups
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup = parser.add_argument_group("Shared libraries",
|
2015-04-27 06:45:55 +02:00
|
|
|
"Flags that allows you to control whether you want to build against "
|
|
|
|
"built-in dependencies or its shared representations. If necessary, "
|
|
|
|
"provide multiple libraries with comma.")
|
2022-01-06 16:54:32 +01:00
|
|
|
static_optgroup = parser.add_argument_group("Static libraries",
|
|
|
|
"Flags that allows you to control whether you want to build against "
|
|
|
|
"additional static libraries.")
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup = parser.add_argument_group("Internationalization",
|
2015-08-13 18:14:34 +02:00
|
|
|
"Flags that lets you enable i18n features in Node.js as well as which "
|
2015-04-27 06:45:55 +02:00
|
|
|
"library you want to build against.")
|
2020-10-22 15:27:38 +02:00
|
|
|
http2_optgroup = parser.add_argument_group("HTTP2",
|
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 19:17:16 +02:00
|
|
|
"Flags that allows you to control HTTP2 features in Node.js")
|
2022-08-24 04:41:29 +02:00
|
|
|
shared_builtin_optgroup = parser.add_argument_group("Shared builtins",
|
|
|
|
"Flags that allows you to control whether you want to build against "
|
|
|
|
"internal builtins or shared files.")
|
2015-04-03 06:33:34 +02:00
|
|
|
|
2013-08-10 13:34:57 +02:00
|
|
|
# Options should be in alphabetical order but keep --prefix at the top,
|
|
|
|
# that's arguably the one people will be looking for most.
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--prefix',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='prefix',
|
2015-04-03 06:33:34 +02:00
|
|
|
default='/usr/local',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='select the install prefix [default: %(default)s]')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--coverage',
|
2016-10-14 14:33:25 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='coverage',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-10-14 14:33:25 +02:00
|
|
|
help='Build node with code coverage enabled')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--debug',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='debug',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='also build debug build')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--debug-node',
|
2020-02-05 15:24:14 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='debug_node',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2020-02-05 15:24:14 +01:00
|
|
|
help='build the Node.js part of the binary with debugging symbols')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--dest-cpu',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='dest_cpu',
|
2015-04-03 06:33:34 +02:00
|
|
|
choices=valid_arch,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"CPU architecture to build for ({', '.join(valid_arch)})")
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--cross-compiling',
|
2016-12-26 14:29:25 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='cross_compiling',
|
|
|
|
default=None,
|
|
|
|
help='force build to be considered as cross compiled')
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--no-cross-compiling',
|
2016-12-26 14:29:25 +01:00
|
|
|
action='store_false',
|
|
|
|
dest='cross_compiling',
|
|
|
|
default=None,
|
|
|
|
help='force build to be considered as NOT cross compiled')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--dest-os',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='dest_os',
|
2015-04-03 06:33:34 +02:00
|
|
|
choices=valid_os,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"operating system to build for ({', '.join(valid_os)})")
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--error-on-warn',
|
2020-04-06 14:17:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='error_on_warn',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2020-04-06 14:17:57 +02:00
|
|
|
help='Turn compiler warnings into errors for node core sources.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--gdb',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='gdb',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='add gdb support')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--no-ifaddrs',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='no_ifaddrs',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='use on deprecated SunOS systems that do not support ifaddrs.h')
|
|
|
|
|
2023-02-18 03:49:18 +01:00
|
|
|
parser.add_argument('--disable-single-executable-application',
|
|
|
|
action='store_true',
|
|
|
|
dest='disable_single_executable_application',
|
|
|
|
default=None,
|
|
|
|
help='Disable Single Executable Application support.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--fully-static",
|
2014-08-23 23:01:06 +02:00
|
|
|
action="store_true",
|
|
|
|
dest="fully_static",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2014-08-23 23:01:06 +02:00
|
|
|
help="Generate an executable without external dynamic libraries. This "
|
2015-12-04 09:14:24 +01:00
|
|
|
"will not work on OSX when using the default compilation environment")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--partly-static",
|
2015-12-04 09:14:24 +01:00
|
|
|
action="store_true",
|
|
|
|
dest="partly_static",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2015-12-04 09:14:24 +01:00
|
|
|
help="Generate an executable with libgcc and libstdc++ libraries. This "
|
|
|
|
"will not work on OSX when using the default compilation environment")
|
2014-08-23 23:01:06 +02:00
|
|
|
|
2022-11-22 09:28:19 +01:00
|
|
|
parser.add_argument("--enable-vtune-profiling",
|
|
|
|
action="store_true",
|
|
|
|
dest="enable_vtune_profiling",
|
|
|
|
help="Enable profiling support for Intel VTune profiler to profile "
|
|
|
|
"JavaScript code executed in Node.js. This feature is only available "
|
|
|
|
"for x32, x86, and x64 architectures.")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--enable-pgo-generate",
|
2018-06-30 00:54:01 +02:00
|
|
|
action="store_true",
|
|
|
|
dest="enable_pgo_generate",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-06-30 00:54:01 +02:00
|
|
|
help="Enable profiling with pgo of a binary. This feature is only available "
|
|
|
|
"on linux with gcc and g++ 5.4.1 or newer.")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--enable-pgo-use",
|
2018-06-30 00:54:01 +02:00
|
|
|
action="store_true",
|
|
|
|
dest="enable_pgo_use",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-06-30 00:54:01 +02:00
|
|
|
help="Enable use of the profile generated with --enable-pgo-generate. This "
|
|
|
|
"feature is only available on linux with gcc and g++ 5.4.1 or newer.")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--enable-lto",
|
2018-07-05 20:19:22 +02:00
|
|
|
action="store_true",
|
|
|
|
dest="enable_lto",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-07-05 20:19:22 +02:00
|
|
|
help="Enable compiling with lto of a binary. This feature is only available "
|
2021-05-21 03:39:23 +02:00
|
|
|
"with gcc 5.4.1+ or clang 3.9.1+.")
|
2015-10-21 18:24:12 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--link-module",
|
2015-08-22 20:36:03 +02:00
|
|
|
action="append",
|
|
|
|
dest="linked_module",
|
2017-11-16 13:33:10 +01:00
|
|
|
help="Path to a JS file to be bundled in the binary as a builtin. "
|
|
|
|
"This module will be referenced by path without extension; "
|
|
|
|
"e.g. /root/x/y.js will be referenced via require('root/x/y'). "
|
2015-08-22 20:36:03 +02:00
|
|
|
"Can be used multiple times")
|
|
|
|
|
2022-05-14 10:04:48 +02:00
|
|
|
parser.add_argument("--openssl-conf-name",
|
|
|
|
action="store",
|
|
|
|
dest="openssl_conf_name",
|
|
|
|
default='nodejs_conf',
|
|
|
|
help="The OpenSSL config appname (config section name) used by Node.js")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--openssl-default-cipher-list',
|
2020-06-03 12:56:58 +02:00
|
|
|
action='store',
|
|
|
|
dest='openssl_default_cipher_list',
|
|
|
|
help='Use the specified cipher list as the default cipher list')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument("--openssl-no-asm",
|
2014-09-02 13:53:36 +02:00
|
|
|
action="store_true",
|
|
|
|
dest="openssl_no_asm",
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2014-09-02 13:53:36 +02:00
|
|
|
help="Do not build optimized assembly for OpenSSL")
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--openssl-is-fips',
|
2019-01-09 11:54:08 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='openssl_is_fips',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-01-09 11:54:08 +01:00
|
|
|
help='specifies that the OpenSSL library is FIPS compatible')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--openssl-use-def-ca-store',
|
2016-12-21 11:16:38 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='use_openssl_ca_store',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-12-21 11:16:38 +01:00
|
|
|
help='Use OpenSSL supplied CA store instead of compiled-in Mozilla CA copy.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--openssl-system-ca-path',
|
2017-11-06 10:30:29 +01:00
|
|
|
action='store',
|
|
|
|
dest='openssl_system_ca_path',
|
|
|
|
help='Use the specified path to system CA (PEM format) in addition to '
|
|
|
|
'the OpenSSL supplied CA store or compiled-in Mozilla CA copy.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--experimental-http-parser',
|
2018-10-30 03:06:09 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='experimental_http_parser',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-12-05 20:42:10 +01:00
|
|
|
help='(no-op)')
|
2018-10-30 03:06:09 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-http-parser',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_http_parser',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='link to a shared http_parser DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-http-parser-includes',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_includes',
|
|
|
|
help='directory containing http_parser header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-http-parser-libname',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_libname',
|
2015-04-03 06:33:34 +02:00
|
|
|
default='http_parser',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-http-parser-libpath',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_http_parser_libpath',
|
|
|
|
help='a directory to search for the shared http_parser DLL')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-libuv',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_libuv',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='link to a shared libuv DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-libuv-includes',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_includes',
|
|
|
|
help='directory containing libuv header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-libuv-libname',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_libname',
|
2015-04-03 06:33:34 +02:00
|
|
|
default='uv',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-libuv-libpath',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_libuv_libpath',
|
|
|
|
help='a directory to search for the shared libuv DLL')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-nghttp2',
|
2017-11-06 09:59:01 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_nghttp2',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2017-11-06 09:59:01 +01:00
|
|
|
help='link to a shared nghttp2 DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-nghttp2-includes',
|
2017-11-06 09:59:01 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp2_includes',
|
|
|
|
help='directory containing nghttp2 header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-nghttp2-libname',
|
2017-11-06 09:59:01 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp2_libname',
|
|
|
|
default='nghttp2',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2017-11-06 09:59:01 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-nghttp2-libpath',
|
2017-11-06 09:59:01 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp2_libpath',
|
|
|
|
help='a directory to search for the shared nghttp2 DLLs')
|
|
|
|
|
2021-03-09 22:50:08 +01:00
|
|
|
shared_optgroup.add_argument('--shared-nghttp3',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_nghttp3',
|
|
|
|
default=None,
|
|
|
|
help='link to a shared nghttp3 DLL instead of static linking')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-nghttp3-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp3_includes',
|
|
|
|
help='directory containing nghttp3 header files')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-nghttp3-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp3_libname',
|
|
|
|
default='nghttp3',
|
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-nghttp3-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_nghttp3_libpath',
|
|
|
|
help='a directory to search for the shared nghttp3 DLLs')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-ngtcp2',
|
|
|
|
action='store_true',
|
|
|
|
dest='shared_ngtcp2',
|
|
|
|
default=None,
|
|
|
|
help='link to a shared ngtcp2 DLL instead of static linking')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-ngtcp2-includes',
|
|
|
|
action='store',
|
|
|
|
dest='shared_ngtcp2_includes',
|
|
|
|
help='directory containing ngtcp2 header files')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-ngtcp2-libname',
|
|
|
|
action='store',
|
|
|
|
dest='shared_ngtcp2_libname',
|
|
|
|
default='ngtcp2',
|
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
|
|
|
|
|
|
|
shared_optgroup.add_argument('--shared-ngtcp2-libpath',
|
|
|
|
action='store',
|
|
|
|
dest='shared_ngtcp2_libpath',
|
|
|
|
help='a directory to search for the shared tcp2 DLLs')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-openssl',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_openssl',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='link to a shared OpenSSl DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-openssl-includes',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_includes',
|
|
|
|
help='directory containing OpenSSL header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-openssl-libname',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_libname',
|
2015-04-03 06:33:34 +02:00
|
|
|
default='crypto,ssl',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-openssl-libpath',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_openssl_libpath',
|
|
|
|
help='a directory to search for the shared OpenSSL DLLs')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-zlib',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_zlib',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2013-08-10 13:34:57 +02:00
|
|
|
help='link to a shared zlib DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-zlib-includes',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_zlib_includes',
|
|
|
|
help='directory containing zlib header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-zlib-libname',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_zlib_libname',
|
2015-04-03 06:33:34 +02:00
|
|
|
default='z',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-zlib-libpath',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='shared_zlib_libpath',
|
|
|
|
help='a directory to search for the shared zlib DLL')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-brotli',
|
2020-03-02 13:17:35 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='shared_brotli',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2020-03-02 13:17:35 +01:00
|
|
|
help='link to a shared brotli DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-brotli-includes',
|
2020-03-02 13:17:35 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_brotli_includes',
|
|
|
|
help='directory containing brotli header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-brotli-libname',
|
2020-03-02 13:17:35 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_brotli_libname',
|
|
|
|
default='brotlidec,brotlienc',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2020-03-02 13:17:35 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-brotli-libpath',
|
2020-03-02 13:17:35 +01:00
|
|
|
action='store',
|
|
|
|
dest='shared_brotli_libpath',
|
|
|
|
help='a directory to search for the shared brotli DLL')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-cares',
|
2016-03-17 23:25:17 +01:00
|
|
|
action='store_true',
|
2019-10-27 14:28:04 +01:00
|
|
|
dest='shared_cares',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-03-17 23:25:17 +01:00
|
|
|
help='link to a shared cares DLL instead of static linking')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-cares-includes',
|
2016-03-17 23:25:17 +01:00
|
|
|
action='store',
|
2019-10-27 14:28:04 +01:00
|
|
|
dest='shared_cares_includes',
|
2016-03-17 23:25:17 +01:00
|
|
|
help='directory containing cares header files')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-cares-libname',
|
2016-03-17 23:25:17 +01:00
|
|
|
action='store',
|
2019-10-27 14:28:04 +01:00
|
|
|
dest='shared_cares_libname',
|
2016-03-17 23:25:17 +01:00
|
|
|
default='cares',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='alternative lib name to link to [default: %(default)s]')
|
2016-03-17 23:25:17 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
shared_optgroup.add_argument('--shared-cares-libpath',
|
2016-03-17 23:25:17 +01:00
|
|
|
action='store',
|
2019-10-27 14:28:04 +01:00
|
|
|
dest='shared_cares_libpath',
|
2016-03-17 23:25:17 +01:00
|
|
|
help='a directory to search for the shared cares DLL')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument_group(shared_optgroup)
|
2015-04-27 06:45:55 +02:00
|
|
|
|
2022-08-24 04:41:29 +02:00
|
|
|
for builtin in shareable_builtins:
|
|
|
|
builtin_id = 'shared_builtin_' + builtin + '_path'
|
|
|
|
shared_builtin_optgroup.add_argument('--shared-builtin-' + builtin + '-path',
|
|
|
|
action='store',
|
|
|
|
dest='node_shared_builtin_' + builtin.replace('/', '_') + '_path',
|
|
|
|
help='Path to shared file for ' + builtin + ' builtin. '
|
|
|
|
'Will be used instead of bundled version at runtime')
|
|
|
|
|
|
|
|
parser.add_argument_group(shared_builtin_optgroup)
|
|
|
|
|
2022-01-06 16:54:32 +01:00
|
|
|
static_optgroup.add_argument('--static-zoslib-gyp',
|
|
|
|
action='store',
|
|
|
|
dest='static_zoslib_gyp',
|
2023-08-15 20:40:33 +02:00
|
|
|
help='path to zoslib.gyp file for includes and to link to static zoslib library')
|
2022-01-06 16:54:32 +01:00
|
|
|
|
|
|
|
parser.add_argument_group(static_optgroup)
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--tag',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='tag',
|
|
|
|
help='custom build tag')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--release-urlbase',
|
2015-01-18 07:41:37 +01:00
|
|
|
action='store',
|
|
|
|
dest='release_urlbase',
|
|
|
|
help='Provide a custom URL prefix for the `process.release` properties '
|
|
|
|
'`sourceUrl` and `headersUrl`. When compiling a release build, this '
|
2015-09-23 06:44:47 +02:00
|
|
|
'will default to https://nodejs.org/download/release/')
|
2015-01-18 07:41:37 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--enable-d8',
|
2016-07-05 16:18:38 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='enable_d8',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS) # Unsupported, undocumented.
|
2016-07-05 16:18:38 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--enable-trace-maps',
|
2017-07-01 02:08:32 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='trace_maps',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2017-07-01 02:08:32 +02:00
|
|
|
help='Enable the --trace-maps flag in V8 (use at your own risk)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--experimental-enable-pointer-compression',
|
2019-11-13 12:18:10 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='enable_pointer_compression',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-11-13 12:18:10 +01:00
|
|
|
help='[Experimental] Enable V8 pointer compression (limits max heap to 4GB and breaks ABI compatibility)')
|
|
|
|
|
2022-12-21 20:16:56 +01:00
|
|
|
parser.add_argument('--disable-shared-readonly-heap',
|
|
|
|
action='store_true',
|
|
|
|
dest='disable_shared_ro_heap',
|
|
|
|
default=None,
|
|
|
|
help='Disable the shared read-only heap feature in V8')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--v8-options',
|
2014-03-26 21:30:49 +01:00
|
|
|
action='store',
|
|
|
|
dest='v8_options',
|
2014-03-31 14:22:49 +02:00
|
|
|
help='v8 options to pass, see `node --v8-options` for examples.')
|
2014-03-26 21:30:49 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-ossfuzz',
|
2020-08-13 18:12:44 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='ossfuzz',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2020-08-13 18:12:44 +02:00
|
|
|
help='Enables building of fuzzers. This command should be run in an OSS-Fuzz Docker image.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-arm-float-abi',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store',
|
|
|
|
dest='arm_float_abi',
|
2015-04-03 06:33:34 +02:00
|
|
|
choices=valid_arm_float_abi,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"specifies which floating-point ABI to use ({', '.join(valid_arm_float_abi)}).")
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-arm-fpu',
|
2015-09-18 11:28:19 +02:00
|
|
|
action='store',
|
|
|
|
dest='arm_fpu',
|
|
|
|
choices=valid_arm_fpu,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"ARM FPU mode ({', '.join(valid_arm_fpu)}) [default: %(default)s]")
|
2015-09-18 11:28:19 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-mips-arch-variant',
|
2019-05-30 05:12:50 +02:00
|
|
|
action='store',
|
|
|
|
dest='mips_arch_variant',
|
|
|
|
default='r2',
|
|
|
|
choices=valid_mips_arch,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"MIPS arch variant ({', '.join(valid_mips_arch)}) [default: %(default)s]")
|
2019-05-30 05:12:50 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-mips-fpu-mode',
|
2019-05-30 05:12:50 +02:00
|
|
|
action='store',
|
|
|
|
dest='mips_fpu_mode',
|
|
|
|
default='fp32',
|
|
|
|
choices=valid_mips_fpu,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"MIPS FPU mode ({', '.join(valid_mips_fpu)}) [default: %(default)s]")
|
2019-05-30 05:12:50 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-mips-float-abi',
|
2019-05-30 05:12:50 +02:00
|
|
|
action='store',
|
|
|
|
dest='mips_float_abi',
|
|
|
|
default='hard',
|
|
|
|
choices=valid_mips_float_abi,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"MIPS floating-point ABI ({', '.join(valid_mips_float_abi)}) [default: %(default)s]")
|
2019-05-30 05:12:50 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--use-largepages',
|
2019-12-24 03:20:45 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='node_use_large_pages',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-12-24 03:20:45 +01:00
|
|
|
help='This option has no effect. --use-largepages is now a runtime option.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--use-largepages-script-lld',
|
2019-12-24 03:20:45 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='node_use_large_pages_script_lld',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-12-24 03:20:45 +01:00
|
|
|
help='This option has no effect. --use-largepages is now a runtime option.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--use-section-ordering-file',
|
2020-01-06 04:48:46 +01:00
|
|
|
action='store',
|
|
|
|
dest='node_section_ordering_info',
|
|
|
|
default='',
|
|
|
|
help='Pass a section ordering file to the linker. This requires that ' +
|
|
|
|
'Node.js be linked using the gold linker. The gold linker must have ' +
|
|
|
|
'version 1.2 or greater.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--with-intl',
|
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 02:13:14 +01:00
|
|
|
action='store',
|
2015-04-27 06:45:55 +02:00
|
|
|
dest='with_intl',
|
2019-09-30 20:17:49 +02:00
|
|
|
default='full-icu',
|
2015-04-27 06:45:55 +02:00
|
|
|
choices=valid_intl_modes,
|
2023-05-01 11:13:16 +02:00
|
|
|
help=f"Intl mode (valid choices: {', '.join(valid_intl_modes)}) [default: %(default)s]")
|
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 02:13:14 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--without-intl',
|
2016-04-09 04:03:24 +02:00
|
|
|
action='store_const',
|
|
|
|
dest='with_intl',
|
|
|
|
const='none',
|
2021-03-30 07:42:20 +02:00
|
|
|
help='Disable Intl, same as --with-intl=none')
|
2016-04-09 04:03:24 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--with-icu-path',
|
2013-11-21 17:13:58 +01:00
|
|
|
action='store',
|
|
|
|
dest='with_icu_path',
|
|
|
|
help='Path to icu.gyp (ICU i18n, Chromium version only.)')
|
|
|
|
|
2016-04-09 04:03:24 +02:00
|
|
|
icu_default_locales='root,en'
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--with-icu-locales',
|
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 02:13:14 +01:00
|
|
|
action='store',
|
|
|
|
dest='with_icu_locales',
|
2016-04-09 04:03:24 +02:00
|
|
|
default=icu_default_locales,
|
2015-04-03 06:33:34 +02:00
|
|
|
help='Comma-separated list of locales for "small-icu". "root" is assumed. '
|
2020-10-22 15:27:38 +02:00
|
|
|
'[default: %(default)s]')
|
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 02:13:14 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--with-icu-source',
|
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 02:13:14 +01:00
|
|
|
action='store',
|
|
|
|
dest='with_icu_source',
|
2018-06-08 22:57:32 +02:00
|
|
|
help='Intl mode: optional local path to icu/ dir, or path/URL of '
|
|
|
|
'the icu4c source archive. '
|
2023-05-01 11:13:16 +02:00
|
|
|
f"v{icu_versions['minimum_icu']}.x or later recommended.")
|
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 02:13:14 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--with-icu-default-data-dir',
|
2019-12-06 22:40:25 +01:00
|
|
|
action='store',
|
|
|
|
dest='with_icu_default_data_dir',
|
|
|
|
help='Path to the icuXXdt{lb}.dat file. If unspecified, ICU data will '
|
|
|
|
'only be read if the NODE_ICU_DATA environment variable or the '
|
|
|
|
'--icu-data-dir runtime argument is used. This option has effect '
|
|
|
|
'only when Node.js is built with --with-intl=small-icu.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-ltcg',
|
2018-06-06 18:22:50 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='with_ltcg',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-06-06 18:22:50 +02:00
|
|
|
help='Use Link Time Code Generation. This feature is only available on Windows.')
|
|
|
|
|
2023-08-24 18:02:26 +02:00
|
|
|
parser.add_argument('--write-snapshot-as-array-literals',
|
|
|
|
action='store_true',
|
|
|
|
dest='write_snapshot_as_array_literals',
|
|
|
|
default=None,
|
|
|
|
help='Write the snapshot data as array literals for readability.'
|
|
|
|
'By default the snapshot data may be written as string literals on some '
|
|
|
|
'platforms to speed up compilation.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-node-snapshot',
|
2019-04-23 16:21:52 +02:00
|
|
|
action='store_true',
|
2019-06-11 20:38:14 +02:00
|
|
|
dest='without_node_snapshot',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-06-11 20:38:14 +02:00
|
|
|
help='Turn off V8 snapshot integration. Currently experimental.')
|
2019-04-23 16:21:52 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-node-code-cache',
|
2019-11-26 06:03:22 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_node_code_cache',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2019-11-26 06:03:22 +01:00
|
|
|
help='Turn off V8 Code cache integration.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--download',
|
2015-04-27 06:45:55 +02:00
|
|
|
action='store',
|
|
|
|
dest='download_list',
|
|
|
|
help=nodedownload.help())
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
intl_optgroup.add_argument('--download-path',
|
2015-10-06 08:09:06 +02:00
|
|
|
action='store',
|
|
|
|
dest='download_path',
|
2017-11-26 14:30:08 +01:00
|
|
|
default='deps',
|
2020-10-22 15:27:38 +02:00
|
|
|
help='Download directory [default: %(default)s]')
|
2015-10-06 08:09:06 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument_group(intl_optgroup)
|
2015-04-27 06:45:55 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--debug-lib',
|
2018-03-02 04:04:59 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='node_debug_lib',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2018-03-02 04:04:59 +01:00
|
|
|
help='build lib with DCHECK macros')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
http2_optgroup.add_argument('--debug-nghttp2',
|
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 19:17:16 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='debug_nghttp2',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
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 19:17:16 +02:00
|
|
|
help='build nghttp2 with DEBUGBUILD (default is false)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument_group(http2_optgroup)
|
2017-09-05 13:08:17 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-npm',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='without_npm',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-06-29 10:12:10 +02:00
|
|
|
help='do not install the bundled npm (package manager)')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2021-12-05 11:23:25 +01:00
|
|
|
parser.add_argument('--without-corepack',
|
|
|
|
action='store_true',
|
|
|
|
dest='without_corepack',
|
|
|
|
default=None,
|
|
|
|
help='do not install the bundled Corepack')
|
|
|
|
|
2020-03-13 03:39:12 +01:00
|
|
|
# Dummy option for backwards compatibility
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-report',
|
2018-09-05 16:06:59 +02:00
|
|
|
action='store_true',
|
2020-03-13 03:39:12 +01:00
|
|
|
dest='unused_without_report',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS)
|
2018-09-05 16:06:59 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--with-snapshot',
|
2015-01-24 01:06:07 +01:00
|
|
|
action='store_true',
|
2017-07-18 14:38:43 +02:00
|
|
|
dest='unused_with_snapshot',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS)
|
2015-01-24 01:06:07 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-snapshot',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
2019-10-18 11:18:28 +02:00
|
|
|
dest='unused_without_snapshot',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS)
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-siphash',
|
2019-03-01 01:22:06 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_siphash',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS)
|
2019-03-01 01:22:06 +01:00
|
|
|
|
2019-04-07 21:02:04 +02:00
|
|
|
# End dummy list.
|
2018-06-18 19:02:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-ssl',
|
2013-08-10 13:34:57 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='without_ssl',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2017-05-11 18:10:27 +02:00
|
|
|
help='build without SSL (disables crypto, https, inspector, etc.)')
|
2013-08-10 13:34:57 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-node-options',
|
2017-02-20 15:18:43 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_node_options',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2017-02-20 15:18:43 +01:00
|
|
|
help='build without NODE_OPTIONS support')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--ninja',
|
2016-05-16 03:51:07 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='use_ninja',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-05-16 03:51:07 +02:00
|
|
|
help='generate build files for use with Ninja')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--enable-asan',
|
2015-08-14 10:07:18 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='enable_asan',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2020-03-17 17:04:20 +01:00
|
|
|
help='compile for Address Sanitizer to find memory bugs')
|
2015-08-14 10:07:18 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--enable-static',
|
2015-04-04 16:04:49 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='enable_static',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2015-04-04 16:04:49 +02:00
|
|
|
help='build as static library')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--no-browser-globals',
|
2016-03-23 02:05:54 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='no_browser_globals',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-03-23 02:05:54 +01:00
|
|
|
help='do not export browser globals like setTimeout, console, etc. ' +
|
2022-01-05 12:01:49 +01:00
|
|
|
'(This mode is deprecated and not officially supported for regular ' +
|
|
|
|
'applications)')
|
2016-03-23 02:05:54 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-inspector',
|
2016-02-07 17:47:14 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_inspector',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2017-05-11 18:10:27 +02:00
|
|
|
help='disable the V8 inspector protocol')
|
2016-02-07 17:47:14 +01:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--shared',
|
2016-03-27 01:17:55 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='shared',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
2016-03-27 01:17:55 +01:00
|
|
|
help='compile shared library for embedding node in another project. ' +
|
|
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
|
2022-08-28 10:12:42 +02:00
|
|
|
parser.add_argument('--libdir',
|
|
|
|
action='store',
|
|
|
|
dest='libdir',
|
|
|
|
default='lib',
|
|
|
|
help='a directory to install the shared library into relative to the '
|
|
|
|
'prefix. This is a no-op if --shared is not specified. ' +
|
|
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-v8-platform',
|
2016-03-27 01:17:55 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_v8_platform',
|
|
|
|
default=False,
|
|
|
|
help='do not initialize v8 platform during node.js startup. ' +
|
|
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--without-bundled-v8',
|
2016-03-27 01:17:55 +01:00
|
|
|
action='store_true',
|
|
|
|
dest='without_bundled_v8',
|
|
|
|
default=False,
|
|
|
|
help='do not use V8 includes from the bundled deps folder. ' +
|
|
|
|
'(This mode is not officially supported for regular applications)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--verbose',
|
2018-08-22 17:02:27 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='verbose',
|
|
|
|
default=False,
|
|
|
|
help='get more output from this script')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--v8-non-optimized-debug',
|
2018-10-17 00:25:44 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='v8_non_optimized_debug',
|
|
|
|
default=False,
|
|
|
|
help='compile V8 with minimal optimizations and with runtime checks')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--v8-with-dchecks',
|
2020-04-11 20:50:59 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='v8_with_dchecks',
|
|
|
|
default=False,
|
|
|
|
help='compile V8 with debug checks and runtime debugging features enabled')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--v8-lite-mode',
|
2020-05-24 14:07:34 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='v8_lite_mode',
|
|
|
|
default=False,
|
|
|
|
help='compile V8 in lite mode for constrained environments (lowers V8 '+
|
|
|
|
'memory footprint, but also implies no just-in-time compilation ' +
|
|
|
|
'support, thus much slower execution)')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--v8-enable-object-print',
|
2020-04-14 02:50:55 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='v8_enable_object_print',
|
2020-08-10 07:53:22 +02:00
|
|
|
default=True,
|
2022-11-17 01:28:48 +01:00
|
|
|
help='compile V8 with auxiliary functions for native debuggers')
|
|
|
|
|
|
|
|
parser.add_argument('--v8-disable-object-print',
|
|
|
|
action='store_true',
|
|
|
|
dest='v8_disable_object_print',
|
|
|
|
default=False,
|
|
|
|
help='disable the V8 auxiliary functions for native debuggers')
|
2020-04-14 02:50:55 +02:00
|
|
|
|
2022-01-12 05:08:16 +01:00
|
|
|
parser.add_argument('--v8-enable-hugepage',
|
|
|
|
action='store_true',
|
|
|
|
dest='v8_enable_hugepage',
|
|
|
|
default=None,
|
|
|
|
help='Enable V8 transparent hugepage support. This feature is only '+
|
|
|
|
'available on Linux platform.')
|
|
|
|
|
2022-04-12 15:46:04 +02:00
|
|
|
parser.add_argument('--v8-enable-short-builtin-calls',
|
|
|
|
action='store_true',
|
|
|
|
dest='v8_enable_short_builtin_calls',
|
|
|
|
default=None,
|
|
|
|
help='Enable V8 short builtin calls support. This feature is enabled '+
|
|
|
|
'on x86_64 platform by default.')
|
|
|
|
|
2022-12-02 17:24:30 +01:00
|
|
|
parser.add_argument('--v8-enable-snapshot-compression',
|
|
|
|
action='store_true',
|
|
|
|
dest='v8_enable_snapshot_compression',
|
|
|
|
default=None,
|
|
|
|
help='Enable the built-in snapshot compression in V8.')
|
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('--node-builtin-modules-path',
|
2020-01-11 23:03:59 +01:00
|
|
|
action='store',
|
|
|
|
dest='node_builtin_modules_path',
|
|
|
|
default=False,
|
|
|
|
help='node will load builtin modules from disk instead of from binary')
|
|
|
|
|
2022-03-24 14:37:08 +01:00
|
|
|
parser.add_argument('--node-snapshot-main',
|
|
|
|
action='store',
|
|
|
|
dest='node_snapshot_main',
|
|
|
|
default=None,
|
|
|
|
help='Run a file when building the embedded snapshot. Currently ' +
|
|
|
|
'experimental.')
|
|
|
|
|
2016-08-05 13:23:22 +02:00
|
|
|
# Create compile_commands.json in out/Debug and out/Release.
|
2020-10-22 15:27:38 +02:00
|
|
|
parser.add_argument('-C',
|
2016-08-05 13:23:22 +02:00
|
|
|
action='store_true',
|
|
|
|
dest='compile_commands_json',
|
2020-10-22 15:27:38 +02:00
|
|
|
default=None,
|
|
|
|
help=argparse.SUPPRESS)
|
2016-08-05 13:23:22 +02:00
|
|
|
|
2020-10-22 15:27:38 +02:00
|
|
|
(options, args) = parser.parse_known_args()
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2015-08-05 14:44:21 +02:00
|
|
|
# Expand ~ in the install prefix now, it gets written to multiple files.
|
2023-05-02 21:20:22 +02:00
|
|
|
options.prefix = str(Path(options.prefix or '').expanduser())
|
2015-08-05 14:44:21 +02:00
|
|
|
|
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 02:13:14 +01:00
|
|
|
# set up auto-download list
|
|
|
|
auto_downloads = nodedownload.parse(options.download_list)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2015-01-24 01:06:07 +01:00
|
|
|
|
2018-04-23 08:48:37 +02:00
|
|
|
def error(msg):
|
|
|
|
prefix = '\033[1m\033[31mERROR\033[0m' if os.isatty(1) else 'ERROR'
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'{prefix}: {msg}')
|
2018-04-23 08:48:37 +02:00
|
|
|
sys.exit(1)
|
|
|
|
|
2015-01-24 01:06:07 +01:00
|
|
|
def warn(msg):
|
2015-01-28 17:46:19 +01:00
|
|
|
warn.warned = True
|
|
|
|
prefix = '\033[1m\033[93mWARNING\033[0m' if os.isatty(1) else 'WARNING'
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'{prefix}: {msg}')
|
2015-01-24 01:06:07 +01:00
|
|
|
|
2017-02-06 02:18:46 +01:00
|
|
|
# track if warnings occurred
|
2015-01-28 17:46:19 +01:00
|
|
|
warn.warned = False
|
2015-01-24 01:06:07 +01:00
|
|
|
|
2019-02-28 08:35:03 +01:00
|
|
|
def info(msg):
|
|
|
|
prefix = '\033[1m\033[32mINFO\033[0m' if os.isatty(1) else 'INFO'
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'{prefix}: {msg}')
|
2019-02-28 08:35:03 +01:00
|
|
|
|
2018-08-22 17:02:27 +02:00
|
|
|
def print_verbose(x):
|
|
|
|
if not options.verbose:
|
|
|
|
return
|
2023-05-01 11:13:16 +02:00
|
|
|
if isinstance(x, str):
|
2018-11-19 11:43:52 +01:00
|
|
|
print(x)
|
2018-08-22 17:02:27 +02:00
|
|
|
else:
|
|
|
|
pprint.pprint(x, indent=2)
|
|
|
|
|
2011-11-29 16:27:52 +01:00
|
|
|
def b(value):
|
|
|
|
"""Returns the string 'true' if value is truthy, 'false' otherwise."""
|
2019-08-13 14:53:52 +02:00
|
|
|
return 'true' if value else 'false'
|
2011-11-29 16:27:52 +01:00
|
|
|
|
2019-03-29 08:38:12 +01:00
|
|
|
def B(value):
|
|
|
|
"""Returns 1 if value is truthy, 0 otherwise."""
|
2019-08-13 14:53:52 +02:00
|
|
|
return 1 if value else 0
|
2019-03-29 08:38:12 +01:00
|
|
|
|
2019-08-13 14:53:52 +02:00
|
|
|
def to_utf8(s):
|
|
|
|
return s if isinstance(s, str) else s.decode("utf-8")
|
2011-11-29 16:27:52 +01:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def pkg_config(pkg):
|
2018-11-08 19:49:40 +01:00
|
|
|
"""Run pkg-config on the specified package
|
|
|
|
Returns ("-l flags", "-I flags", "-L flags", "version")
|
|
|
|
otherwise (None, None, None, None)"""
|
2015-05-04 05:57:17 +02:00
|
|
|
pkg_config = os.environ.get('PKG_CONFIG', 'pkg-config')
|
2019-06-07 11:36:39 +02:00
|
|
|
args = [] # Print pkg-config warnings on first round.
|
2022-01-05 04:50:14 +01:00
|
|
|
retval = []
|
2018-11-08 19:49:40 +01:00
|
|
|
for flag in ['--libs-only-l', '--cflags-only-I',
|
|
|
|
'--libs-only-L', '--modversion']:
|
2020-03-02 13:17:09 +01:00
|
|
|
args += [flag]
|
|
|
|
if isinstance(pkg, list):
|
|
|
|
args += pkg
|
|
|
|
else:
|
|
|
|
args += [pkg]
|
2015-05-04 05:57:17 +02:00
|
|
|
try:
|
2019-06-07 11:36:39 +02:00
|
|
|
proc = subprocess.Popen(shlex.split(pkg_config) + args,
|
|
|
|
stdout=subprocess.PIPE)
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
val = to_utf8(proc.communicate()[0]).strip()
|
2016-11-17 07:57:04 +01:00
|
|
|
except OSError as e:
|
2023-05-01 11:13:16 +02:00
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise e # Unexpected error.
|
2018-11-08 19:49:40 +01:00
|
|
|
return (None, None, None, None) # No pkg-config/pkgconf installed.
|
2022-01-05 04:50:14 +01:00
|
|
|
retval.append(val)
|
2019-06-07 11:36:39 +02:00
|
|
|
args = ['--silence-errors']
|
2022-01-05 04:50:14 +01:00
|
|
|
return tuple(retval)
|
2015-05-04 05:57:17 +02:00
|
|
|
|
|
|
|
|
2015-01-15 22:36:38 +01:00
|
|
|
def try_check_compiler(cc, lang):
|
|
|
|
try:
|
|
|
|
proc = subprocess.Popen(shlex.split(cc) + ['-E', '-P', '-x', lang, '-'],
|
|
|
|
stdin=subprocess.PIPE, stdout=subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
return (False, False, '', '')
|
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
proc.stdin.write(b'__clang__ __GNUC__ __GNUC_MINOR__ __GNUC_PATCHLEVEL__ '
|
|
|
|
b'__clang_major__ __clang_minor__ __clang_patchlevel__')
|
2015-01-15 22:36:38 +01:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
if sys.platform == 'zos':
|
|
|
|
values = (to_utf8(proc.communicate()[0]).split('\n')[-2].split() + ['0'] * 7)[0:7]
|
|
|
|
else:
|
|
|
|
values = (to_utf8(proc.communicate()[0]).split() + ['0'] * 7)[0:7]
|
2022-01-06 16:54:32 +01:00
|
|
|
|
2015-01-15 22:36:38 +01:00
|
|
|
is_clang = values[0] == '1'
|
2018-12-06 20:35:02 +01:00
|
|
|
gcc_version = tuple(map(int, values[1:1+3]))
|
|
|
|
clang_version = tuple(map(int, values[4:4+3])) if is_clang else None
|
2015-01-15 22:36:38 +01:00
|
|
|
|
|
|
|
return (True, is_clang, clang_version, gcc_version)
|
|
|
|
|
|
|
|
|
2015-03-31 07:16:10 +02:00
|
|
|
#
|
|
|
|
# The version of asm compiler is needed for building openssl asm files.
|
|
|
|
# See deps/openssl/openssl.gypi for detail.
|
2015-09-23 06:48:38 +02:00
|
|
|
# Commands and regular expressions to obtain its version number are taken from
|
2015-03-31 07:16:10 +02:00
|
|
|
# https://github.com/openssl/openssl/blob/OpenSSL_1_0_2-stable/crypto/sha/asm/sha512-x86_64.pl#L112-L129
|
|
|
|
#
|
2016-03-03 22:38:24 +01:00
|
|
|
def get_version_helper(cc, regexp):
|
2015-03-31 07:16:10 +02:00
|
|
|
try:
|
|
|
|
proc = subprocess.Popen(shlex.split(cc) + ['-v'], stdin=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE, stdout=subprocess.PIPE)
|
|
|
|
except OSError:
|
2018-04-23 08:48:37 +02:00
|
|
|
error('''No acceptable C compiler found!
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2018-04-23 08:48:37 +02:00
|
|
|
Please make sure you have a C compiler installed on your system and/or
|
|
|
|
consider adjusting the CC environment variable if you installed
|
|
|
|
it in a non-standard prefix.''')
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
match = re.search(regexp, to_utf8(proc.communicate()[1]))
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
return match.group(2) if match else '0.0'
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2018-03-07 14:31:05 +01:00
|
|
|
def get_nasm_version(asm):
|
|
|
|
try:
|
|
|
|
proc = subprocess.Popen(shlex.split(asm) + ['-v'],
|
|
|
|
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE)
|
|
|
|
except OSError:
|
|
|
|
warn('''No acceptable ASM compiler found!
|
2019-06-12 17:48:12 +02:00
|
|
|
Please make sure you have installed NASM from https://www.nasm.us
|
2018-03-07 14:31:05 +01:00
|
|
|
and refer BUILDING.md.''')
|
2019-10-09 10:36:52 +02:00
|
|
|
return '0.0'
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
match = re.match(r"NASM version ([2-9]\.[0-9][0-9]+)",
|
|
|
|
to_utf8(proc.communicate()[0]))
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
return match.group(1) if match else '0.0'
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2016-03-03 22:38:24 +01:00
|
|
|
def get_llvm_version(cc):
|
|
|
|
return get_version_helper(
|
2020-06-13 01:35:38 +02:00
|
|
|
cc, r"(^(?:.+ )?clang version|based on LLVM) ([0-9]+\.[0-9]+)")
|
2016-03-03 22:38:24 +01:00
|
|
|
|
|
|
|
def get_xcode_version(cc):
|
|
|
|
return get_version_helper(
|
2019-06-05 13:17:03 +02:00
|
|
|
cc, r"(^Apple (?:clang|LLVM) version) ([0-9]+\.[0-9]+)")
|
2015-03-31 07:16:10 +02:00
|
|
|
|
|
|
|
def get_gas_version(cc):
|
|
|
|
try:
|
2018-04-29 08:49:21 +02:00
|
|
|
custom_env = os.environ.copy()
|
2018-06-08 22:18:27 +02:00
|
|
|
custom_env["LC_ALL"] = "C"
|
2015-03-31 07:16:10 +02:00
|
|
|
proc = subprocess.Popen(shlex.split(cc) + ['-Wa,-v', '-c', '-o',
|
|
|
|
'/dev/null', '-x',
|
|
|
|
'assembler', '/dev/null'],
|
|
|
|
stdin=subprocess.PIPE, stderr=subprocess.PIPE,
|
2018-04-29 08:49:21 +02:00
|
|
|
stdout=subprocess.PIPE, env=custom_env)
|
2015-03-31 07:16:10 +02:00
|
|
|
except OSError:
|
2018-04-23 08:48:37 +02:00
|
|
|
error('''No acceptable C compiler found!
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2018-04-23 08:48:37 +02:00
|
|
|
Please make sure you have a C compiler installed on your system and/or
|
|
|
|
consider adjusting the CC environment variable if you installed
|
|
|
|
it in a non-standard prefix.''')
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
gas_ret = to_utf8(proc.communicate()[1])
|
|
|
|
|
2018-06-08 21:47:51 +02:00
|
|
|
match = re.match(r"GNU assembler version ([2-9]\.[0-9]+)", gas_ret)
|
2015-03-31 07:16:10 +02:00
|
|
|
|
|
|
|
if match:
|
|
|
|
return match.group(1)
|
2023-05-01 11:13:16 +02:00
|
|
|
|
|
|
|
warn(f'Could not recognize `gas`: {gas_ret}')
|
|
|
|
return '0.0'
|
2015-03-31 07:16:10 +02:00
|
|
|
|
2015-01-15 22:36:38 +01:00
|
|
|
# Note: Apple clang self-reports as clang 4.2.0 and gcc 4.2.1. It passes
|
|
|
|
# the version check more by accident than anything else but a more rigorous
|
2020-12-06 10:07:47 +01:00
|
|
|
# check involves checking the build number against an allowlist. I'm not
|
2015-01-15 22:36:38 +01:00
|
|
|
# quite prepared to go that far yet.
|
2015-03-31 07:16:10 +02:00
|
|
|
def check_compiler(o):
|
2015-01-15 22:36:38 +01:00
|
|
|
if sys.platform == 'win32':
|
2021-05-21 03:39:23 +02:00
|
|
|
o['variables']['llvm_version'] = '0.0'
|
2018-12-18 23:36:33 +01:00
|
|
|
if not options.openssl_no_asm and options.dest_cpu in ('x86', 'x64'):
|
2018-03-07 14:31:05 +01:00
|
|
|
nasm_version = get_nasm_version('nasm')
|
|
|
|
o['variables']['nasm_version'] = nasm_version
|
2019-10-09 10:36:52 +02:00
|
|
|
if nasm_version == '0.0':
|
2018-03-07 14:31:05 +01:00
|
|
|
o['variables']['openssl_no_asm'] = 1
|
2015-01-15 22:36:38 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
ok, is_clang, clang_version, gcc_version = try_check_compiler(CXX, 'c++')
|
2020-04-08 12:42:25 +02:00
|
|
|
version_str = ".".join(map(str, clang_version if is_clang else gcc_version))
|
2023-05-01 11:13:16 +02:00
|
|
|
print_verbose(f"Detected {'clang ' if is_clang else ''}C++ compiler (CXX={CXX}) version: {version_str}")
|
2015-01-15 22:36:38 +01:00
|
|
|
if not ok:
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'failed to autodetect C++ compiler version (CXX={CXX})')
|
2023-02-25 19:38:43 +01:00
|
|
|
elif clang_version < (8, 0, 0) if is_clang else gcc_version < (10, 1, 0):
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'C++ compiler (CXX={CXX}, {version_str}) too old, need g++ 10.1.0 or clang++ 8.0.0')
|
2015-01-15 22:36:38 +01:00
|
|
|
|
|
|
|
ok, is_clang, clang_version, gcc_version = try_check_compiler(CC, 'c')
|
2020-04-08 12:42:25 +02:00
|
|
|
version_str = ".".join(map(str, clang_version if is_clang else gcc_version))
|
2023-05-01 11:13:16 +02:00
|
|
|
print_verbose(f"Detected {'clang ' if is_clang else ''}C compiler (CC={CC}) version: {version_str}")
|
2015-01-15 22:36:38 +01:00
|
|
|
if not ok:
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'failed to autodetect C compiler version (CC={CC})')
|
2018-06-06 21:28:42 +02:00
|
|
|
elif not is_clang and gcc_version < (4, 2, 0):
|
2015-01-15 22:36:38 +01:00
|
|
|
# clang 3.2 is a little white lie because any clang version will probably
|
|
|
|
# do for the C bits. However, we might as well encourage people to upgrade
|
|
|
|
# to a version that is not completely ancient.
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'C compiler (CC={CC}, {version_str}) too old, need gcc 4.2 or clang 3.2')
|
2015-01-15 22:36:38 +01:00
|
|
|
|
2019-10-09 10:36:52 +02:00
|
|
|
o['variables']['llvm_version'] = get_llvm_version(CC) if is_clang else '0.0'
|
2017-07-05 12:43:47 +02:00
|
|
|
|
|
|
|
# Need xcode_version or gas_version when openssl asm files are compiled.
|
2015-03-31 07:16:10 +02:00
|
|
|
if options.without_ssl or options.openssl_no_asm or options.shared_openssl:
|
|
|
|
return
|
|
|
|
|
|
|
|
if is_clang:
|
2016-03-03 22:38:24 +01:00
|
|
|
if sys.platform == 'darwin':
|
|
|
|
o['variables']['xcode_version'] = get_xcode_version(CC)
|
2015-03-31 07:16:10 +02:00
|
|
|
else:
|
|
|
|
o['variables']['gas_version'] = get_gas_version(CC)
|
|
|
|
|
2015-01-15 22:36:38 +01:00
|
|
|
|
2015-08-12 17:53:33 +02:00
|
|
|
def cc_macros(cc=None):
|
|
|
|
"""Checks predefined macros using the C compiler command."""
|
2012-02-20 21:27:07 +01:00
|
|
|
|
2012-05-05 00:06:24 +02:00
|
|
|
try:
|
2015-08-12 17:53:33 +02:00
|
|
|
p = subprocess.Popen(shlex.split(cc or CC) + ['-dM', '-E', '-'],
|
2012-05-05 00:06:24 +02:00
|
|
|
stdin=subprocess.PIPE,
|
|
|
|
stdout=subprocess.PIPE,
|
|
|
|
stderr=subprocess.PIPE)
|
|
|
|
except OSError:
|
2018-04-23 08:48:37 +02:00
|
|
|
error('''No acceptable C compiler found!
|
2012-05-05 00:06:24 +02:00
|
|
|
|
2018-04-23 08:48:37 +02:00
|
|
|
Please make sure you have a C compiler installed on your system and/or
|
|
|
|
consider adjusting the CC environment variable if you installed
|
|
|
|
it in a non-standard prefix.''')
|
2012-05-05 00:06:24 +02:00
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with p:
|
|
|
|
p.stdin.write(b'\n')
|
|
|
|
out = to_utf8(p.communicate()[0]).split('\n')
|
2012-02-20 21:27:07 +01:00
|
|
|
|
|
|
|
k = {}
|
|
|
|
for line in out:
|
|
|
|
lst = shlex.split(line)
|
|
|
|
if len(lst) > 2:
|
|
|
|
key = lst[1]
|
|
|
|
val = lst[2]
|
|
|
|
k[key] = val
|
2012-06-23 03:39:10 +02:00
|
|
|
return k
|
|
|
|
|
|
|
|
|
|
|
|
def is_arch_armv7():
|
|
|
|
"""Check for ARMv7 instructions"""
|
|
|
|
cc_macros_cache = cc_macros()
|
2015-12-02 03:37:08 +01:00
|
|
|
return cc_macros_cache.get('__ARM_ARCH') == '7'
|
2012-06-23 03:39:10 +02:00
|
|
|
|
|
|
|
|
2014-07-23 15:24:07 +02:00
|
|
|
def is_arch_armv6():
|
|
|
|
"""Check for ARMv6 instructions"""
|
|
|
|
cc_macros_cache = cc_macros()
|
2015-12-02 03:37:08 +01:00
|
|
|
return cc_macros_cache.get('__ARM_ARCH') == '6'
|
2014-07-23 15:24:07 +02:00
|
|
|
|
|
|
|
|
2013-04-19 14:54:21 +02:00
|
|
|
def is_arm_hard_float_abi():
|
2012-06-23 03:39:10 +02:00
|
|
|
"""Check for hardfloat or softfloat eabi on ARM"""
|
|
|
|
# GCC versions 4.6 and above define __ARM_PCS or __ARM_PCS_VFP to specify
|
|
|
|
# the Floating Point ABI used (PCS stands for Procedure Call Standard).
|
|
|
|
# We use these as well as a couple of other defines to statically determine
|
|
|
|
# what FP ABI used.
|
|
|
|
|
2014-12-20 15:39:10 +01:00
|
|
|
return '__ARM_PCS_VFP' in cc_macros()
|
2012-06-23 03:39:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
def host_arch_cc():
|
|
|
|
"""Host architecture check using the CC command."""
|
|
|
|
|
2022-01-06 16:54:32 +01:00
|
|
|
if sys.platform.startswith('zos'):
|
|
|
|
return 's390x'
|
2021-07-22 02:49:48 +02:00
|
|
|
k = cc_macros(os.environ.get('CC_host'))
|
2012-02-20 21:27:07 +01:00
|
|
|
|
|
|
|
matchup = {
|
2015-03-02 21:35:29 +01:00
|
|
|
'__aarch64__' : 'arm64',
|
2012-02-20 21:27:07 +01:00
|
|
|
'__arm__' : 'arm',
|
2015-03-02 21:35:29 +01:00
|
|
|
'__i386__' : 'ia32',
|
2019-05-30 05:12:50 +02:00
|
|
|
'__MIPSEL__' : 'mipsel',
|
|
|
|
'__mips__' : 'mips',
|
2015-07-07 20:15:03 +02:00
|
|
|
'__PPC64__' : 'ppc64',
|
2016-11-16 17:02:57 +01:00
|
|
|
'__PPC__' : 'ppc64',
|
2015-03-02 21:35:29 +01:00
|
|
|
'__x86_64__' : 'x64',
|
2016-03-28 23:03:06 +02:00
|
|
|
'__s390x__' : 's390x',
|
2021-06-11 10:09:30 +02:00
|
|
|
'__riscv' : 'riscv',
|
2022-01-18 20:39:50 +01:00
|
|
|
'__loongarch64': 'loong64',
|
2012-02-13 14:28:43 +01:00
|
|
|
}
|
|
|
|
|
2012-02-20 21:27:07 +01:00
|
|
|
rtn = 'ia32' # default
|
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
for key, value in matchup.items():
|
|
|
|
if k.get(key, 0) and k[key] != '0':
|
|
|
|
rtn = value
|
2019-07-28 21:14:57 +02:00
|
|
|
break
|
2012-02-13 14:28:43 +01:00
|
|
|
|
2019-05-30 05:12:50 +02:00
|
|
|
if rtn == 'mipsel' and '_LP64' in k:
|
|
|
|
rtn = 'mips64el'
|
|
|
|
|
2021-06-11 10:09:30 +02:00
|
|
|
if rtn == 'riscv':
|
|
|
|
if k['__riscv_xlen'] == '64':
|
|
|
|
rtn = 'riscv64'
|
|
|
|
else:
|
|
|
|
rtn = 'riscv32'
|
|
|
|
|
2012-02-20 21:27:07 +01:00
|
|
|
return rtn
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
2012-03-15 23:17:25 +01:00
|
|
|
def host_arch_win():
|
|
|
|
"""Host architecture check using environ vars (better way to do this?)"""
|
|
|
|
|
2014-07-01 09:48:28 +02:00
|
|
|
observed_arch = os.environ.get('PROCESSOR_ARCHITECTURE', 'x86')
|
|
|
|
arch = os.environ.get('PROCESSOR_ARCHITEW6432', observed_arch)
|
2012-03-15 23:17:25 +01:00
|
|
|
|
|
|
|
matchup = {
|
|
|
|
'AMD64' : 'x64',
|
|
|
|
'x86' : 'ia32',
|
|
|
|
'arm' : 'arm',
|
2019-05-30 05:12:50 +02:00
|
|
|
'mips' : 'mips',
|
2022-04-05 13:19:18 +02:00
|
|
|
'ARM64' : 'arm64'
|
2012-03-15 23:17:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return matchup.get(arch, 'ia32')
|
|
|
|
|
|
|
|
|
2012-09-19 14:37:08 +02:00
|
|
|
def configure_arm(o):
|
|
|
|
if options.arm_float_abi:
|
2013-04-19 14:54:21 +02:00
|
|
|
arm_float_abi = options.arm_float_abi
|
2013-12-07 20:49:49 +01:00
|
|
|
elif is_arm_hard_float_abi():
|
|
|
|
arm_float_abi = 'hard'
|
2012-09-19 14:37:08 +02:00
|
|
|
else:
|
2014-01-08 22:08:29 +01:00
|
|
|
arm_float_abi = 'default'
|
2014-07-23 15:24:07 +02:00
|
|
|
|
2015-12-08 21:53:06 +01:00
|
|
|
arm_fpu = 'vfp'
|
2015-09-18 11:28:19 +02:00
|
|
|
|
2014-07-23 15:24:07 +02:00
|
|
|
if is_arch_armv7():
|
2015-09-18 11:28:19 +02:00
|
|
|
arm_fpu = 'vfpv3'
|
2014-07-23 15:24:07 +02:00
|
|
|
o['variables']['arm_version'] = '7'
|
|
|
|
else:
|
2015-01-22 21:51:38 +01:00
|
|
|
o['variables']['arm_version'] = '6' if is_arch_armv6() else 'default'
|
2014-07-23 15:24:07 +02:00
|
|
|
|
2013-04-19 14:54:21 +02:00
|
|
|
o['variables']['arm_thumb'] = 0 # -marm
|
|
|
|
o['variables']['arm_float_abi'] = arm_float_abi
|
2012-09-19 14:37:08 +02:00
|
|
|
|
2015-03-09 04:19:21 +01:00
|
|
|
if options.dest_os == 'android':
|
2015-09-18 11:28:19 +02:00
|
|
|
arm_fpu = 'vfpv3'
|
2015-03-09 04:19:21 +01:00
|
|
|
o['variables']['arm_version'] = '7'
|
|
|
|
|
2015-09-18 11:28:19 +02:00
|
|
|
o['variables']['arm_fpu'] = options.arm_fpu or arm_fpu
|
|
|
|
|
2012-09-19 14:37:08 +02:00
|
|
|
|
2020-06-16 11:17:27 +02:00
|
|
|
def configure_mips(o, target_arch):
|
2023-05-01 11:13:16 +02:00
|
|
|
can_use_fpu_instructions = options.mips_float_abi != 'soft'
|
2019-05-30 05:12:50 +02:00
|
|
|
o['variables']['v8_can_use_fpu_instructions'] = b(can_use_fpu_instructions)
|
|
|
|
o['variables']['v8_use_mips_abi_hardfloat'] = b(can_use_fpu_instructions)
|
|
|
|
o['variables']['mips_arch_variant'] = options.mips_arch_variant
|
|
|
|
o['variables']['mips_fpu_mode'] = options.mips_fpu_mode
|
2020-06-16 11:17:27 +02:00
|
|
|
host_byteorder = 'little' if target_arch in ('mipsel', 'mips64el') else 'big'
|
|
|
|
o['variables']['v8_host_byteorder'] = host_byteorder
|
2019-05-30 05:12:50 +02:00
|
|
|
|
2022-01-06 16:54:32 +01:00
|
|
|
def configure_zos(o):
|
|
|
|
o['variables']['node_static_zoslib'] = b(True)
|
|
|
|
if options.static_zoslib_gyp:
|
|
|
|
# Apply to all Node.js components for now
|
2023-05-02 21:20:22 +02:00
|
|
|
o['variables']['zoslib_include_dir'] = Path(options.static_zoslib_gyp).parent + '/include'
|
2022-02-15 12:51:52 +01:00
|
|
|
o['include_dirs'] += [o['variables']['zoslib_include_dir']]
|
2022-01-06 16:54:32 +01:00
|
|
|
else:
|
|
|
|
raise Exception('--static-zoslib-gyp=<path to zoslib.gyp file> is required.')
|
|
|
|
|
2021-05-21 03:39:23 +02:00
|
|
|
def clang_version_ge(version_checked):
|
|
|
|
for compiler in [(CC, 'c'), (CXX, 'c++')]:
|
2023-05-01 11:13:16 +02:00
|
|
|
_, is_clang, clang_version, _1 = (
|
2021-05-21 03:39:23 +02:00
|
|
|
try_check_compiler(compiler[0], compiler[1])
|
2023-05-01 11:13:16 +02:00
|
|
|
)
|
2021-05-21 03:39:23 +02:00
|
|
|
if is_clang and clang_version >= version_checked:
|
|
|
|
return True
|
|
|
|
return False
|
2019-05-30 05:12:50 +02:00
|
|
|
|
2018-06-30 00:54:01 +02:00
|
|
|
def gcc_version_ge(version_checked):
|
|
|
|
for compiler in [(CC, 'c'), (CXX, 'c++')]:
|
2023-05-01 11:13:16 +02:00
|
|
|
_, is_clang, _1, gcc_version = (
|
2018-06-30 00:54:01 +02:00
|
|
|
try_check_compiler(compiler[0], compiler[1])
|
2023-05-01 11:13:16 +02:00
|
|
|
)
|
2021-05-21 03:39:23 +02:00
|
|
|
if is_clang or gcc_version < version_checked:
|
2018-06-30 00:54:01 +02:00
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
2021-07-07 18:19:00 +02:00
|
|
|
def configure_node_lib_files(o):
|
|
|
|
o['variables']['node_library_files'] = SearchFiles('lib', 'js')
|
2018-06-30 00:54:01 +02:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def configure_node(o):
|
2013-05-08 14:10:07 +02:00
|
|
|
if options.dest_os == 'android':
|
2013-08-02 11:50:45 +02:00
|
|
|
o['variables']['OS'] = 'android'
|
2015-08-05 14:44:21 +02:00
|
|
|
o['variables']['node_prefix'] = options.prefix
|
2011-12-17 09:09:14 +01:00
|
|
|
o['variables']['node_install_npm'] = b(not options.without_npm)
|
2021-12-05 11:23:25 +01:00
|
|
|
o['variables']['node_install_corepack'] = b(not options.without_corepack)
|
2020-02-05 15:24:14 +01:00
|
|
|
o['variables']['debug_node'] = b(options.debug_node)
|
2012-01-18 10:37:02 +01:00
|
|
|
o['default_configuration'] = 'Debug' if options.debug else 'Release'
|
2020-04-06 14:17:57 +02:00
|
|
|
o['variables']['error_on_warn'] = b(options.error_on_warn)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2012-07-12 16:29:43 +02:00
|
|
|
host_arch = host_arch_win() if os.name == 'nt' else host_arch_cc()
|
|
|
|
target_arch = options.dest_cpu or host_arch
|
2015-06-10 09:05:26 +02:00
|
|
|
# ia32 is preferred by the build tools (GYP) over x86 even if we prefer the latter
|
|
|
|
# the Makefile resets this to x86 afterward
|
|
|
|
if target_arch == 'x86':
|
|
|
|
target_arch = 'ia32'
|
2018-01-09 04:48:31 +01:00
|
|
|
# x86_64 is common across linuxes, allow it as an alias for x64
|
|
|
|
if target_arch == 'x86_64':
|
|
|
|
target_arch = 'x64'
|
2012-07-12 16:29:43 +02:00
|
|
|
o['variables']['host_arch'] = host_arch
|
|
|
|
o['variables']['target_arch'] = target_arch
|
2015-07-07 20:15:03 +02:00
|
|
|
o['variables']['node_byteorder'] = sys.byteorder
|
2012-07-12 16:29:43 +02:00
|
|
|
|
2016-12-26 14:29:25 +01:00
|
|
|
cross_compiling = (options.cross_compiling
|
|
|
|
if options.cross_compiling is not None
|
|
|
|
else target_arch != host_arch)
|
2020-03-24 19:57:08 +01:00
|
|
|
if cross_compiling:
|
|
|
|
os.environ['GYP_CROSSCOMPILE'] = "1"
|
2019-10-18 11:18:28 +02:00
|
|
|
if options.unused_without_snapshot:
|
|
|
|
warn('building --without-snapshot is no longer possible')
|
|
|
|
|
|
|
|
o['variables']['want_separate_host_toolset'] = int(cross_compiling)
|
2014-05-16 01:11:51 +02:00
|
|
|
|
2022-08-13 00:41:26 +02:00
|
|
|
# Enable branch protection for arm64
|
|
|
|
if target_arch == 'arm64':
|
|
|
|
o['cflags']+=['-msign-return-address=all']
|
2022-11-09 08:36:52 +01:00
|
|
|
o['variables']['arm_fpu'] = options.arm_fpu or 'neon'
|
2022-08-13 00:41:26 +02:00
|
|
|
|
2022-03-24 14:37:08 +01:00
|
|
|
if options.node_snapshot_main is not None:
|
|
|
|
if options.shared:
|
|
|
|
# This should be possible to fix, but we will need to refactor the
|
|
|
|
# libnode target to avoid building it twice.
|
|
|
|
error('--node-snapshot-main is incompatible with --shared')
|
|
|
|
if options.without_node_snapshot:
|
|
|
|
error('--node-snapshot-main is incompatible with ' +
|
|
|
|
'--without-node-snapshot')
|
|
|
|
if cross_compiling:
|
|
|
|
error('--node-snapshot-main is incompatible with cross compilation')
|
|
|
|
o['variables']['node_snapshot_main'] = options.node_snapshot_main
|
|
|
|
|
2020-01-11 23:03:59 +01:00
|
|
|
if options.without_node_snapshot or options.node_builtin_modules_path:
|
|
|
|
o['variables']['node_use_node_snapshot'] = 'false'
|
|
|
|
else:
|
2019-11-26 06:30:28 +01:00
|
|
|
o['variables']['node_use_node_snapshot'] = b(
|
|
|
|
not cross_compiling and not options.shared)
|
2019-04-23 16:21:52 +02:00
|
|
|
|
2021-11-18 04:56:39 +01:00
|
|
|
if options.without_node_code_cache or options.without_node_snapshot or options.node_builtin_modules_path:
|
2020-01-11 23:03:59 +01:00
|
|
|
o['variables']['node_use_node_code_cache'] = 'false'
|
|
|
|
else:
|
2019-11-26 06:03:22 +01:00
|
|
|
# TODO(refack): fix this when implementing embedded code-cache when cross-compiling.
|
2019-11-26 06:30:28 +01:00
|
|
|
o['variables']['node_use_node_code_cache'] = b(
|
|
|
|
not cross_compiling and not options.shared)
|
2019-11-26 06:03:22 +01:00
|
|
|
|
2023-08-24 18:02:26 +02:00
|
|
|
if options.write_snapshot_as_array_literals is not None:
|
|
|
|
o['variables']['node_write_snapshot_as_array_literals'] = b(options.write_snapshot_as_array_literals)
|
|
|
|
else:
|
|
|
|
o['variables']['node_write_snapshot_as_array_literals'] = b(flavor != 'mac' and flavor != 'linux')
|
|
|
|
|
2012-07-12 16:29:43 +02:00
|
|
|
if target_arch == 'arm':
|
2012-09-19 14:37:08 +02:00
|
|
|
configure_arm(o)
|
2019-05-30 05:12:50 +02:00
|
|
|
elif target_arch in ('mips', 'mipsel', 'mips64el'):
|
2020-06-16 11:17:27 +02:00
|
|
|
configure_mips(o, target_arch)
|
2022-01-06 16:54:32 +01:00
|
|
|
elif sys.platform == 'zos':
|
|
|
|
configure_zos(o)
|
2012-06-26 02:54:11 +02:00
|
|
|
|
2023-02-22 05:18:56 +01:00
|
|
|
if flavor in ('aix', 'os400'):
|
2015-09-29 16:22:00 +02:00
|
|
|
o['variables']['node_target_type'] = 'static_library'
|
|
|
|
|
2022-11-22 09:28:19 +01:00
|
|
|
if target_arch in ('x86', 'x64', 'ia32', 'x32'):
|
|
|
|
o['variables']['node_enable_v8_vtunejit'] = b(options.enable_vtune_profiling)
|
|
|
|
elif options.enable_vtune_profiling:
|
|
|
|
raise Exception(
|
|
|
|
'The VTune profiler for JavaScript is only supported on x32, x86, and x64 '
|
|
|
|
'architectures.')
|
|
|
|
else:
|
|
|
|
o['variables']['node_enable_v8_vtunejit'] = 'false'
|
|
|
|
|
2018-06-30 00:54:01 +02:00
|
|
|
if flavor != 'linux' and (options.enable_pgo_generate or options.enable_pgo_use):
|
|
|
|
raise Exception(
|
|
|
|
'The pgo option is supported only on linux.')
|
|
|
|
|
|
|
|
if flavor == 'linux':
|
|
|
|
if options.enable_pgo_generate or options.enable_pgo_use:
|
|
|
|
version_checked = (5, 4, 1)
|
|
|
|
if not gcc_version_ge(version_checked):
|
|
|
|
version_checked_str = ".".join(map(str, version_checked))
|
|
|
|
raise Exception(
|
|
|
|
'The options --enable-pgo-generate and --enable-pgo-use '
|
2023-05-01 11:13:16 +02:00
|
|
|
f'are supported for gcc and gxx {version_checked_str} or newer only.')
|
2018-06-30 00:54:01 +02:00
|
|
|
|
|
|
|
if options.enable_pgo_generate and options.enable_pgo_use:
|
|
|
|
raise Exception(
|
|
|
|
'Only one of the --enable-pgo-generate or --enable-pgo-use options '
|
|
|
|
'can be specified at a time. You would like to use '
|
|
|
|
'--enable-pgo-generate first, profile node, and then recompile '
|
|
|
|
'with --enable-pgo-use')
|
|
|
|
|
|
|
|
o['variables']['enable_pgo_generate'] = b(options.enable_pgo_generate)
|
|
|
|
o['variables']['enable_pgo_use'] = b(options.enable_pgo_use)
|
|
|
|
|
2021-05-21 03:39:23 +02:00
|
|
|
if flavor == 'win' and (options.enable_lto):
|
2018-07-05 20:19:22 +02:00
|
|
|
raise Exception(
|
2021-05-21 03:39:23 +02:00
|
|
|
'Use Link Time Code Generation instead.')
|
|
|
|
|
|
|
|
if options.enable_lto:
|
|
|
|
gcc_version_checked = (5, 4, 1)
|
|
|
|
clang_version_checked = (3, 9, 1)
|
|
|
|
if not gcc_version_ge(gcc_version_checked) and not clang_version_ge(clang_version_checked):
|
|
|
|
gcc_version_checked_str = ".".join(map(str, gcc_version_checked))
|
|
|
|
clang_version_checked_str = ".".join(map(str, clang_version_checked))
|
|
|
|
raise Exception(
|
2023-05-01 11:13:16 +02:00
|
|
|
f'The option --enable-lto is supported for gcc {gcc_version_checked_str}+'
|
|
|
|
f'or clang {clang_version_checked_str}+ only.')
|
2018-07-05 20:19:22 +02:00
|
|
|
|
|
|
|
o['variables']['enable_lto'] = b(options.enable_lto)
|
|
|
|
|
2019-12-26 18:04:43 +01:00
|
|
|
if options.node_use_large_pages or options.node_use_large_pages_script_lld:
|
|
|
|
warn('''The `--use-largepages` and `--use-largepages-script-lld` options
|
|
|
|
have no effect during build time. Support for mapping to large pages is
|
|
|
|
now a runtime option of Node.js. Run `node --use-largepages` or add
|
|
|
|
`--use-largepages` to the `NODE_OPTIONS` environment variable once
|
|
|
|
Node.js is built to enable mapping to large pages.''')
|
|
|
|
|
2012-06-30 04:27:29 +02:00
|
|
|
if options.no_ifaddrs:
|
|
|
|
o['defines'] += ['SUNOS_NO_IFADDRS']
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2023-02-18 03:49:18 +01:00
|
|
|
o['variables']['single_executable_application'] = b(not options.disable_single_executable_application)
|
|
|
|
if options.disable_single_executable_application:
|
|
|
|
o['defines'] += ['DISABLE_SINGLE_EXECUTABLE_APPLICATION']
|
|
|
|
|
2018-06-06 18:22:50 +02:00
|
|
|
o['variables']['node_with_ltcg'] = b(options.with_ltcg)
|
|
|
|
if flavor != 'win' and options.with_ltcg:
|
|
|
|
raise Exception('Link Time Code Generation is only supported on Windows.')
|
|
|
|
|
2012-12-27 05:35:00 +01:00
|
|
|
if options.tag:
|
|
|
|
o['variables']['node_tag'] = '-' + options.tag
|
|
|
|
else:
|
|
|
|
o['variables']['node_tag'] = ''
|
2012-12-21 02:56:47 +01:00
|
|
|
|
2015-01-18 07:41:37 +01:00
|
|
|
o['variables']['node_release_urlbase'] = options.release_urlbase or ''
|
|
|
|
|
2014-03-26 21:30:49 +01:00
|
|
|
if options.v8_options:
|
2014-03-31 14:22:49 +02:00
|
|
|
o['variables']['node_v8_options'] = options.v8_options.replace('"', '\\"')
|
2014-03-26 21:30:49 +01:00
|
|
|
|
2015-04-04 16:04:49 +02:00
|
|
|
if options.enable_static:
|
|
|
|
o['variables']['node_target_type'] = 'static_library'
|
|
|
|
|
2018-03-02 04:04:59 +01:00
|
|
|
o['variables']['node_debug_lib'] = b(options.node_debug_lib)
|
|
|
|
|
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 19:17:16 +02:00
|
|
|
if options.debug_nghttp2:
|
|
|
|
o['variables']['debug_nghttp2'] = 1
|
|
|
|
else:
|
|
|
|
o['variables']['debug_nghttp2'] = 'false'
|
|
|
|
|
2016-03-23 02:05:54 +01:00
|
|
|
o['variables']['node_no_browser_globals'] = b(options.no_browser_globals)
|
2019-11-26 06:03:22 +01:00
|
|
|
|
2016-03-27 01:17:55 +01:00
|
|
|
o['variables']['node_shared'] = b(options.shared)
|
2022-08-28 10:12:42 +02:00
|
|
|
o['variables']['libdir'] = options.libdir
|
2016-07-12 20:04:29 +02:00
|
|
|
node_module_version = getmoduleversion.get_version()
|
2016-11-14 14:43:41 +01:00
|
|
|
|
2017-09-25 01:11:48 +02:00
|
|
|
if options.dest_os == 'android':
|
|
|
|
shlib_suffix = 'so'
|
|
|
|
elif sys.platform == 'darwin':
|
2016-11-14 14:43:41 +01:00
|
|
|
shlib_suffix = '%s.dylib'
|
|
|
|
elif sys.platform.startswith('aix'):
|
|
|
|
shlib_suffix = '%s.a'
|
2023-02-22 05:18:56 +01:00
|
|
|
elif sys.platform == 'os400':
|
|
|
|
shlib_suffix = '%s.a'
|
2022-01-06 16:54:32 +01:00
|
|
|
elif sys.platform.startswith('zos'):
|
|
|
|
shlib_suffix = '%s.x'
|
2016-11-14 14:43:41 +01:00
|
|
|
else:
|
|
|
|
shlib_suffix = 'so.%s'
|
2017-09-25 01:11:48 +02:00
|
|
|
if '%s' in shlib_suffix:
|
|
|
|
shlib_suffix %= node_module_version
|
2016-11-14 14:43:41 +01:00
|
|
|
|
2016-07-12 20:04:29 +02:00
|
|
|
o['variables']['node_module_version'] = int(node_module_version)
|
|
|
|
o['variables']['shlib_suffix'] = shlib_suffix
|
2016-03-23 02:05:54 +01:00
|
|
|
|
2015-08-22 20:36:03 +02:00
|
|
|
if options.linked_module:
|
2023-06-24 17:36:14 +02:00
|
|
|
o['variables']['linked_module_files'] = options.linked_module
|
2015-08-22 20:36:03 +02:00
|
|
|
|
2015-08-14 10:07:18 +02:00
|
|
|
o['variables']['asan'] = int(options.enable_asan or 0)
|
2012-06-12 01:23:17 +02:00
|
|
|
|
2016-10-14 14:33:25 +02:00
|
|
|
if options.coverage:
|
|
|
|
o['variables']['coverage'] = 'true'
|
|
|
|
else:
|
|
|
|
o['variables']['coverage'] = 'false'
|
|
|
|
|
2017-12-05 01:07:53 +01:00
|
|
|
if options.shared:
|
|
|
|
o['variables']['node_target_type'] = 'shared_library'
|
|
|
|
elif options.enable_static:
|
|
|
|
o['variables']['node_target_type'] = 'static_library'
|
|
|
|
else:
|
|
|
|
o['variables']['node_target_type'] = 'executable'
|
|
|
|
|
2020-01-11 23:03:59 +01:00
|
|
|
if options.node_builtin_modules_path:
|
|
|
|
print('Warning! Loading builtin modules from disk is for development')
|
|
|
|
o['variables']['node_builtin_modules_path'] = options.node_builtin_modules_path
|
|
|
|
|
2019-05-23 11:57:31 +02:00
|
|
|
def configure_napi(output):
|
|
|
|
version = getnapibuildversion.get_napi_version()
|
|
|
|
output['variables']['napi_build_version'] = version
|
|
|
|
|
2019-10-27 14:28:04 +01:00
|
|
|
def configure_library(lib, output, pkgname=None):
|
2015-05-04 05:57:17 +02:00
|
|
|
shared_lib = 'shared_' + lib
|
|
|
|
output['variables']['node_' + shared_lib] = b(getattr(options, shared_lib))
|
|
|
|
|
|
|
|
if getattr(options, shared_lib):
|
2020-12-17 14:35:24 +01:00
|
|
|
(pkg_libs, pkg_cflags, pkg_libpath, _) = pkg_config(pkgname or lib)
|
2015-06-15 22:04:14 +02:00
|
|
|
|
2016-10-30 13:40:54 +01:00
|
|
|
if options.__dict__[shared_lib + '_includes']:
|
|
|
|
output['include_dirs'] += [options.__dict__[shared_lib + '_includes']]
|
|
|
|
elif pkg_cflags:
|
2019-01-19 10:44:47 +01:00
|
|
|
stripped_flags = [flag.strip() for flag in pkg_cflags.split('-I')]
|
|
|
|
output['include_dirs'] += [flag for flag in stripped_flags if flag]
|
2015-05-04 05:57:17 +02:00
|
|
|
|
|
|
|
# libpath needs to be provided ahead libraries
|
2016-10-30 13:40:54 +01:00
|
|
|
if options.__dict__[shared_lib + '_libpath']:
|
2018-06-25 21:28:03 +02:00
|
|
|
if flavor == 'win':
|
|
|
|
if 'msvs_settings' not in output:
|
|
|
|
output['msvs_settings'] = { 'VCLinkerTool': { 'AdditionalOptions': [] } }
|
|
|
|
output['msvs_settings']['VCLinkerTool']['AdditionalOptions'] += [
|
2023-05-01 11:13:16 +02:00
|
|
|
f"/LIBPATH:{options.__dict__[shared_lib + '_libpath']}"]
|
2018-06-25 21:28:03 +02:00
|
|
|
else:
|
|
|
|
output['libraries'] += [
|
2023-05-01 11:13:16 +02:00
|
|
|
f"-L{options.__dict__[shared_lib + '_libpath']}"]
|
2016-10-30 13:40:54 +01:00
|
|
|
elif pkg_libpath:
|
|
|
|
output['libraries'] += [pkg_libpath]
|
2015-06-15 22:04:14 +02:00
|
|
|
|
|
|
|
default_libs = getattr(options, shared_lib + '_libname')
|
2023-05-01 11:13:16 +02:00
|
|
|
default_libs = [f'-l{l}' for l in default_libs.split(',')]
|
2015-06-15 22:04:14 +02:00
|
|
|
|
2016-10-30 13:40:54 +01:00
|
|
|
if default_libs:
|
2015-06-15 22:04:14 +02:00
|
|
|
output['libraries'] += default_libs
|
2016-10-30 13:40:54 +01:00
|
|
|
elif pkg_libs:
|
|
|
|
output['libraries'] += pkg_libs.split()
|
2012-10-24 01:54:22 +02:00
|
|
|
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
def configure_v8(o):
|
2023-06-01 20:11:26 +02:00
|
|
|
o['variables']['v8_enable_webassembly'] = 0 if options.v8_lite_mode else 1
|
2021-12-15 08:33:46 +01:00
|
|
|
o['variables']['v8_enable_javascript_promise_hooks'] = 1
|
2020-05-24 14:07:34 +02:00
|
|
|
o['variables']['v8_enable_lite_mode'] = 1 if options.v8_lite_mode else 0
|
2013-11-10 02:02:27 +01:00
|
|
|
o['variables']['v8_enable_gdbjit'] = 1 if options.gdb else 0
|
|
|
|
o['variables']['v8_no_strict_aliasing'] = 1 # Work around compiler bugs.
|
2018-10-17 00:25:44 +02:00
|
|
|
o['variables']['v8_optimized_debug'] = 0 if options.v8_non_optimized_debug else 1
|
2020-04-11 20:50:59 +02:00
|
|
|
o['variables']['dcheck_always_on'] = 1 if options.v8_with_dchecks else 0
|
2022-11-17 01:28:48 +01:00
|
|
|
o['variables']['v8_enable_object_print'] = 0 if options.v8_disable_object_print else 1
|
2013-11-10 02:02:27 +01:00
|
|
|
o['variables']['v8_random_seed'] = 0 # Use a random seed for hash tables.
|
2017-05-25 20:51:56 +02:00
|
|
|
o['variables']['v8_promise_internal_field_count'] = 1 # Add internal field to promises for async hooks.
|
2019-01-25 20:03:36 +01:00
|
|
|
o['variables']['v8_use_siphash'] = 0 if options.without_siphash else 1
|
2019-11-13 12:18:10 +01:00
|
|
|
o['variables']['v8_enable_pointer_compression'] = 1 if options.enable_pointer_compression else 0
|
|
|
|
o['variables']['v8_enable_31bit_smis_on_64bit_arch'] = 1 if options.enable_pointer_compression else 0
|
2022-12-21 20:16:56 +01:00
|
|
|
o['variables']['v8_enable_shared_ro_heap'] = 0 if options.enable_pointer_compression or options.disable_shared_ro_heap else 1
|
2023-08-10 18:46:52 +02:00
|
|
|
o['variables']['v8_enable_extensible_ro_snapshot'] = 0
|
2017-07-01 02:08:32 +02:00
|
|
|
o['variables']['v8_trace_maps'] = 1 if options.trace_maps else 0
|
2016-07-05 16:18:38 +02:00
|
|
|
o['variables']['node_use_v8_platform'] = b(not options.without_v8_platform)
|
|
|
|
o['variables']['node_use_bundled_v8'] = b(not options.without_bundled_v8)
|
2016-06-29 22:03:18 +02:00
|
|
|
o['variables']['force_dynamic_crt'] = 1 if options.shared else 0
|
2016-07-05 16:18:38 +02:00
|
|
|
o['variables']['node_enable_d8'] = b(options.enable_d8)
|
|
|
|
if options.enable_d8:
|
|
|
|
o['variables']['test_isolation_mode'] = 'noop' # Needed by d8.gyp.
|
|
|
|
if options.without_bundled_v8 and options.enable_d8:
|
|
|
|
raise Exception('--enable-d8 is incompatible with --without-bundled-v8.')
|
2022-01-06 16:54:32 +01:00
|
|
|
if options.static_zoslib_gyp:
|
|
|
|
o['variables']['static_zoslib_gyp'] = options.static_zoslib_gyp
|
2022-01-12 05:08:16 +01:00
|
|
|
if flavor != 'linux' and options.v8_enable_hugepage:
|
|
|
|
raise Exception('--v8-enable-hugepage is supported only on linux.')
|
|
|
|
o['variables']['v8_enable_hugepage'] = 1 if options.v8_enable_hugepage else 0
|
2022-04-12 15:46:04 +02:00
|
|
|
if options.v8_enable_short_builtin_calls or o['variables']['target_arch'] == 'x64':
|
|
|
|
o['variables']['v8_enable_short_builtin_calls'] = 1
|
2022-12-02 17:24:30 +01:00
|
|
|
if options.v8_enable_snapshot_compression:
|
|
|
|
o['variables']['v8_enable_snapshot_compression'] = 1
|
2022-11-17 01:28:48 +01:00
|
|
|
if options.v8_enable_object_print and options.v8_disable_object_print:
|
|
|
|
raise Exception(
|
|
|
|
'Only one of the --v8-enable-object-print or --v8-disable-object-print options '
|
|
|
|
'can be specified at a time.')
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
def configure_openssl(o):
|
2018-03-07 14:31:05 +01:00
|
|
|
variables = o['variables']
|
|
|
|
variables['node_use_openssl'] = b(not options.without_ssl)
|
|
|
|
variables['node_shared_openssl'] = b(options.shared_openssl)
|
2021-03-09 22:50:08 +01:00
|
|
|
variables['node_shared_ngtcp2'] = b(options.shared_ngtcp2)
|
|
|
|
variables['node_shared_nghttp3'] = b(options.shared_nghttp3)
|
2019-01-09 11:54:08 +01:00
|
|
|
variables['openssl_is_fips'] = b(options.openssl_is_fips)
|
2021-04-14 11:19:54 +02:00
|
|
|
variables['node_fipsinstall'] = b(False)
|
2018-04-23 08:49:13 +02:00
|
|
|
|
2018-11-09 11:55:37 +01:00
|
|
|
if options.openssl_no_asm:
|
|
|
|
variables['openssl_no_asm'] = 1
|
|
|
|
|
2022-05-14 10:04:48 +02:00
|
|
|
o['defines'] += ['NODE_OPENSSL_CONF_NAME=' + options.openssl_conf_name]
|
|
|
|
|
2018-04-23 08:49:13 +02:00
|
|
|
if options.without_ssl:
|
|
|
|
def without_ssl_error(option):
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'--without-ssl is incompatible with {option}')
|
2018-04-23 08:49:13 +02:00
|
|
|
if options.shared_openssl:
|
|
|
|
without_ssl_error('--shared-openssl')
|
|
|
|
if options.openssl_no_asm:
|
|
|
|
without_ssl_error('--openssl-no-asm')
|
2021-04-14 11:19:54 +02:00
|
|
|
if options.openssl_is_fips:
|
|
|
|
without_ssl_error('--openssl-is-fips')
|
2020-06-03 12:56:58 +02:00
|
|
|
if options.openssl_default_cipher_list:
|
|
|
|
without_ssl_error('--openssl-default-cipher-list')
|
2018-04-23 08:49:13 +02:00
|
|
|
return
|
|
|
|
|
2016-12-21 11:16:38 +01:00
|
|
|
if options.use_openssl_ca_store:
|
|
|
|
o['defines'] += ['NODE_OPENSSL_CERT_STORE']
|
2017-11-06 10:30:29 +01:00
|
|
|
if options.openssl_system_ca_path:
|
2018-03-07 14:31:05 +01:00
|
|
|
variables['openssl_system_ca_path'] = options.openssl_system_ca_path
|
|
|
|
variables['node_without_node_options'] = b(options.without_node_options)
|
2017-02-20 15:18:43 +01:00
|
|
|
if options.without_node_options:
|
|
|
|
o['defines'] += ['NODE_WITHOUT_NODE_OPTIONS']
|
2020-06-03 12:56:58 +02:00
|
|
|
if options.openssl_default_cipher_list:
|
|
|
|
variables['openssl_default_cipher_list'] = \
|
|
|
|
options.openssl_default_cipher_list
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2018-04-23 08:49:13 +02:00
|
|
|
if not options.shared_openssl and not options.openssl_no_asm:
|
2018-04-23 14:26:28 +02:00
|
|
|
is_x86 = 'x64' in variables['target_arch'] or 'ia32' in variables['target_arch']
|
|
|
|
|
2018-04-23 08:49:13 +02:00
|
|
|
# supported asm compiler for AVX2. See https://github.com/openssl/openssl/
|
|
|
|
# blob/OpenSSL_1_1_0-stable/crypto/modes/asm/aesni-gcm-x86_64.pl#L52-L69
|
|
|
|
openssl110_asm_supported = \
|
2019-10-14 14:51:48 +02:00
|
|
|
('gas_version' in variables and StrictVersion(variables['gas_version']) >= StrictVersion('2.23')) or \
|
|
|
|
('xcode_version' in variables and StrictVersion(variables['xcode_version']) >= StrictVersion('5.0')) or \
|
|
|
|
('llvm_version' in variables and StrictVersion(variables['llvm_version']) >= StrictVersion('3.3')) or \
|
|
|
|
('nasm_version' in variables and StrictVersion(variables['nasm_version']) >= StrictVersion('2.10'))
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2018-04-23 14:26:28 +02:00
|
|
|
if is_x86 and not openssl110_asm_supported:
|
2018-04-23 08:49:13 +02:00
|
|
|
error('''Did not find a new enough assembler, install one or build with
|
|
|
|
--openssl-no-asm.
|
|
|
|
Please refer to BUILDING.md''')
|
|
|
|
|
|
|
|
elif options.openssl_no_asm:
|
|
|
|
warn('''--openssl-no-asm will result in binaries that do not take advantage
|
|
|
|
of modern CPU cryptographic instructions and will therefore be slower.
|
|
|
|
Please refer to BUILDING.md''')
|
|
|
|
|
|
|
|
if options.openssl_no_asm and options.shared_openssl:
|
|
|
|
error('--openssl-no-asm is incompatible with --shared-openssl')
|
2018-03-07 14:31:05 +01:00
|
|
|
|
2022-05-02 17:50:54 +02:00
|
|
|
if options.openssl_is_fips:
|
2021-04-26 05:52:16 +02:00
|
|
|
o['defines'] += ['OPENSSL_FIPS']
|
2022-05-02 17:50:54 +02:00
|
|
|
|
|
|
|
if options.openssl_is_fips and not options.shared_openssl:
|
2021-04-14 11:19:54 +02:00
|
|
|
variables['node_fipsinstall'] = b(True)
|
2021-04-26 05:52:16 +02:00
|
|
|
|
2021-03-09 22:29:20 +01:00
|
|
|
if options.shared_openssl:
|
2021-04-14 11:19:54 +02:00
|
|
|
has_quic = getsharedopensslhasquic.get_has_quic(options.__dict__['shared_openssl_includes'])
|
|
|
|
else:
|
|
|
|
has_quic = getsharedopensslhasquic.get_has_quic('deps/openssl/openssl/include')
|
|
|
|
|
|
|
|
variables['openssl_quic'] = b(has_quic)
|
|
|
|
if has_quic:
|
|
|
|
o['defines'] += ['NODE_OPENSSL_HAS_QUIC']
|
2021-03-09 22:29:20 +01:00
|
|
|
|
2015-05-04 05:57:17 +02:00
|
|
|
configure_library('openssl', o)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
|
|
|
|
2015-12-04 09:14:24 +01:00
|
|
|
def configure_static(o):
|
|
|
|
if options.fully_static or options.partly_static:
|
2014-08-23 23:01:06 +02:00
|
|
|
if flavor == 'mac':
|
2018-08-22 17:02:27 +02:00
|
|
|
warn("Generation of static executable will not work on OSX "
|
2015-12-04 09:14:24 +01:00
|
|
|
"when using the default compilation environment")
|
|
|
|
return
|
|
|
|
|
|
|
|
if options.fully_static:
|
|
|
|
o['libraries'] += ['-static']
|
|
|
|
elif options.partly_static:
|
|
|
|
o['libraries'] += ['-static-libgcc', '-static-libstdc++']
|
|
|
|
if options.enable_asan:
|
|
|
|
o['libraries'] += ['-static-libasan']
|
2014-08-23 23:01:06 +02:00
|
|
|
|
|
|
|
|
2014-10-04 02:42:37 +02:00
|
|
|
def write(filename, data):
|
2023-05-01 11:13:16 +02:00
|
|
|
print_verbose(f'creating {filename}')
|
2023-05-02 21:20:22 +02:00
|
|
|
with Path(filename).open(mode='w+', encoding='utf-8') as f:
|
2018-08-22 17:02:27 +02:00
|
|
|
f.write(data)
|
2014-10-04 02:42:37 +02:00
|
|
|
|
|
|
|
do_not_edit = '# Do not edit. Generated by the configure script.\n'
|
|
|
|
|
2015-08-01 01:25:15 +02:00
|
|
|
def glob_to_var(dir_base, dir_sub, patch_dir):
|
2023-05-01 11:13:16 +02:00
|
|
|
file_list = []
|
|
|
|
dir_all = f'{dir_base}/{dir_sub}'
|
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 07:03:24 +02:00
|
|
|
files = os.walk(dir_all)
|
|
|
|
for ent in files:
|
2023-05-01 11:13:16 +02:00
|
|
|
(_, _1, files) = ent
|
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 07:03:24 +02:00
|
|
|
for file in files:
|
2021-09-06 17:21:16 +02:00
|
|
|
if file.endswith(('.cpp', '.c', '.h')):
|
2015-08-01 01:25:15 +02:00
|
|
|
# srcfile uses "slash" as dir separator as its output is consumed by gyp
|
2023-05-01 11:13:16 +02:00
|
|
|
srcfile = f'{dir_sub}/{file}'
|
2015-08-01 01:25:15 +02:00
|
|
|
if patch_dir:
|
2023-05-02 21:20:22 +02:00
|
|
|
patchfile = Path(dir_base, patch_dir, file)
|
|
|
|
if patchfile.is_file():
|
2023-05-01 11:13:16 +02:00
|
|
|
srcfile = f'{patch_dir}/{file}'
|
|
|
|
info(f'Using floating patch "{patchfile}" from "{dir_base}"')
|
|
|
|
file_list.append(srcfile)
|
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 07:03:24 +02:00
|
|
|
break
|
2023-05-01 11:13:16 +02:00
|
|
|
return file_list
|
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 07:03:24 +02:00
|
|
|
|
|
|
|
def configure_intl(o):
|
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 02:13:14 +01:00
|
|
|
def icu_download(path):
|
2023-05-02 21:20:22 +02:00
|
|
|
depFile = tools_path / 'icu' / 'current_ver.dep'
|
|
|
|
icus = json.loads(depFile.read_text(encoding='utf-8'))
|
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 02:13:14 +01:00
|
|
|
# download ICU, if needed
|
2015-10-06 08:09:06 +02:00
|
|
|
if not os.access(options.download_path, os.W_OK):
|
2018-04-23 08:48:37 +02:00
|
|
|
error('''Cannot write to desired download path.
|
|
|
|
Either create it or verify permissions.''')
|
2019-03-31 20:22:58 +02:00
|
|
|
attemptdownload = nodedownload.candownload(auto_downloads, "icu")
|
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 02:13:14 +01:00
|
|
|
for icu in icus:
|
|
|
|
url = icu['url']
|
2019-04-23 19:01:07 +02:00
|
|
|
(expectHash, hashAlgo, allAlgos) = nodedownload.findHash(icu)
|
|
|
|
if not expectHash:
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'''Could not find a hash to verify ICU download.
|
|
|
|
{depFile} may be incorrect.
|
|
|
|
For the entry {url},
|
|
|
|
Expected one of these keys: {' '.join(allAlgos)}''')
|
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 02:13:14 +01:00
|
|
|
local = url.split('/')[-1]
|
2023-05-02 21:20:22 +02:00
|
|
|
targetfile = Path(options.download_path, local)
|
|
|
|
if not targetfile.is_file():
|
2019-03-31 20:22:58 +02:00
|
|
|
if attemptdownload:
|
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 02:13:14 +01:00
|
|
|
nodedownload.retrievefile(url, targetfile)
|
|
|
|
else:
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'Re-using existing {targetfile}')
|
2023-05-02 21:20:22 +02:00
|
|
|
if targetfile.is_file():
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'Checking file integrity with {hashAlgo}:\r')
|
2019-04-23 19:01:07 +02:00
|
|
|
gotHash = nodedownload.checkHash(targetfile, hashAlgo)
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'{hashAlgo}: {gotHash} {targetfile}')
|
|
|
|
if expectHash == gotHash:
|
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 02:13:14 +01:00
|
|
|
return targetfile
|
2023-05-01 11:13:16 +02:00
|
|
|
|
|
|
|
warn(f'Expected: {expectHash} *MISMATCH*')
|
|
|
|
warn(f'\n ** Corrupted ZIP? Delete {targetfile} to retry download.\n')
|
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 02:13:14 +01:00
|
|
|
return None
|
2014-10-04 02:42:37 +02:00
|
|
|
icu_config = {
|
|
|
|
'variables': {}
|
|
|
|
}
|
|
|
|
icu_config_name = 'icu_config.gypi'
|
|
|
|
|
|
|
|
# write an empty file to start with
|
|
|
|
write(icu_config_name, do_not_edit +
|
2022-03-31 14:44:50 +02:00
|
|
|
pprint.pformat(icu_config, indent=2, width=1024) + '\n')
|
2014-10-04 02:42:37 +02:00
|
|
|
|
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 07:03:24 +02:00
|
|
|
# always set icu_small, node.gyp depends on it being defined.
|
|
|
|
o['variables']['icu_small'] = b(False)
|
|
|
|
|
2023-01-18 21:37:37 +01:00
|
|
|
# prevent data override
|
|
|
|
o['defines'] += ['ICU_NO_USER_DATA_OVERRIDE']
|
|
|
|
|
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 07:03:24 +02:00
|
|
|
with_intl = options.with_intl
|
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 02:13:14 +01:00
|
|
|
with_icu_source = options.with_icu_source
|
2013-11-21 17:13:58 +01:00
|
|
|
have_icu_path = bool(options.with_icu_path)
|
2015-04-27 06:45:55 +02:00
|
|
|
if have_icu_path and with_intl != 'none':
|
2018-04-23 08:48:37 +02:00
|
|
|
error('Cannot specify both --with-icu-path and --with-intl')
|
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 07:03:24 +02:00
|
|
|
elif have_icu_path:
|
|
|
|
# Chromium .gyp mode: --with-icu-path
|
|
|
|
o['variables']['v8_enable_i18n_support'] = 1
|
|
|
|
# use the .gyp given
|
2013-11-21 17:13:58 +01:00
|
|
|
o['variables']['icu_gyp_path'] = options.with_icu_path
|
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 07:03:24 +02:00
|
|
|
return
|
2023-05-01 11:13:16 +02:00
|
|
|
|
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 07:03:24 +02:00
|
|
|
# --with-intl=<with_intl>
|
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 02:13:14 +01:00
|
|
|
# set the default
|
2015-04-03 06:33:34 +02:00
|
|
|
if with_intl in (None, 'none'):
|
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 07:03:24 +02:00
|
|
|
o['variables']['v8_enable_i18n_support'] = 0
|
|
|
|
return # no Intl
|
2023-05-01 11:13:16 +02:00
|
|
|
|
|
|
|
if with_intl == 'small-icu':
|
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 07:03:24 +02:00
|
|
|
# small ICU (English only)
|
|
|
|
o['variables']['v8_enable_i18n_support'] = 1
|
|
|
|
o['variables']['icu_small'] = b(True)
|
2015-04-03 06:33:34 +02:00
|
|
|
locs = set(options.with_icu_locales.split(','))
|
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 02:13:14 +01:00
|
|
|
locs.add('root') # must have root
|
2022-05-06 13:20:44 +02:00
|
|
|
o['variables']['icu_locales'] = ','.join(str(loc) for loc in sorted(locs))
|
2016-04-09 04:03:24 +02:00
|
|
|
# We will check a bit later if we can use the canned deps/icu-small
|
2019-12-06 22:40:25 +01:00
|
|
|
o['variables']['icu_default_data'] = options.with_icu_default_data_dir or ''
|
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 07:03:24 +02:00
|
|
|
elif with_intl == 'full-icu':
|
|
|
|
# full ICU
|
|
|
|
o['variables']['v8_enable_i18n_support'] = 1
|
|
|
|
elif with_intl == 'system-icu':
|
|
|
|
# ICU from pkg-config.
|
|
|
|
o['variables']['v8_enable_i18n_support'] = 1
|
|
|
|
pkgicu = pkg_config('icu-i18n')
|
2019-06-07 11:36:39 +02:00
|
|
|
if not pkgicu[0]:
|
2018-04-23 08:48:37 +02:00
|
|
|
error('''Could not load pkg-config data for "icu-i18n".
|
|
|
|
See above errors or the README.md.''')
|
2018-11-08 19:49:40 +01:00
|
|
|
(libs, cflags, libpath, icuversion) = pkgicu
|
|
|
|
icu_ver_major = icuversion.split('.')[0]
|
|
|
|
o['variables']['icu_ver_major'] = icu_ver_major
|
|
|
|
if int(icu_ver_major) < icu_versions['minimum_icu']:
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f"icu4c v{icuversion} is too old, v{icu_versions['minimum_icu']}.x or later is required.")
|
2015-05-04 05:57:17 +02:00
|
|
|
# libpath provides linker path which may contain spaces
|
2015-05-25 05:10:14 +02:00
|
|
|
if libpath:
|
|
|
|
o['libraries'] += [libpath]
|
2015-05-04 05:57:17 +02:00
|
|
|
# safe to split, cannot contain spaces
|
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 07:03:24 +02:00
|
|
|
o['libraries'] += libs.split()
|
2015-05-25 05:10:14 +02:00
|
|
|
if cflags:
|
2019-01-19 10:44:47 +01:00
|
|
|
stripped_flags = [flag.strip() for flag in cflags.split('-I')]
|
|
|
|
o['include_dirs'] += [flag for flag in stripped_flags if flag]
|
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 07:03:24 +02:00
|
|
|
# use the "system" .gyp
|
|
|
|
o['variables']['icu_gyp_path'] = 'tools/icu/icu-system.gyp'
|
|
|
|
return
|
|
|
|
|
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 02:13:14 +01:00
|
|
|
# this is just the 'deps' dir. Used for unpacking.
|
2017-11-26 14:30:08 +01:00
|
|
|
icu_parent_path = 'deps'
|
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 02:13:14 +01:00
|
|
|
|
2016-04-09 04:03:24 +02:00
|
|
|
# The full path to the ICU source directory. Should not include './'.
|
2019-09-30 20:17:49 +02:00
|
|
|
icu_deps_path = 'deps/icu'
|
|
|
|
icu_full_path = icu_deps_path
|
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 02:13:14 +01:00
|
|
|
|
|
|
|
# icu-tmp is used to download and unpack the ICU tarball.
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_tmp_path = Path(icu_parent_path, 'icu-tmp')
|
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 02:13:14 +01:00
|
|
|
|
2016-04-09 04:03:24 +02:00
|
|
|
# canned ICU. see tools/icu/README.md to update.
|
|
|
|
canned_icu_dir = 'deps/icu-small'
|
|
|
|
|
2019-09-30 20:17:49 +02:00
|
|
|
# use the README to verify what the canned ICU is
|
2023-05-02 21:20:22 +02:00
|
|
|
canned_icu_path = Path(canned_icu_dir)
|
|
|
|
canned_is_full = (canned_icu_path / 'README-FULL-ICU.txt').is_file()
|
|
|
|
canned_is_small = (canned_icu_path / 'README-SMALL-ICU.txt').is_file()
|
2019-09-30 20:17:49 +02:00
|
|
|
if canned_is_small:
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'Ignoring {canned_icu_dir} - in-repo small icu is no longer supported.')
|
2019-09-30 20:17:49 +02:00
|
|
|
|
2016-04-09 04:03:24 +02:00
|
|
|
# We can use 'deps/icu-small' - pre-canned ICU *iff*
|
2019-09-30 20:17:49 +02:00
|
|
|
# - canned_is_full AND
|
2016-04-09 04:03:24 +02:00
|
|
|
# - with_icu_source is unset (i.e. no other ICU was specified)
|
|
|
|
#
|
|
|
|
# This is *roughly* equivalent to
|
2019-09-30 20:17:49 +02:00
|
|
|
# $ configure --with-intl=full-icu --with-icu-source=deps/icu-small
|
2016-04-09 04:03:24 +02:00
|
|
|
# .. Except that we avoid copying icu-small over to deps/icu.
|
|
|
|
# In this default case, deps/icu is ignored, although make clean will
|
|
|
|
# still harmlessly remove deps/icu.
|
|
|
|
|
2019-09-30 20:17:49 +02:00
|
|
|
if (not with_icu_source) and canned_is_full:
|
2016-04-09 04:03:24 +02:00
|
|
|
# OK- we can use the canned ICU.
|
|
|
|
icu_full_path = canned_icu_dir
|
2019-09-30 20:17:49 +02:00
|
|
|
icu_config['variables']['icu_full_canned'] = 1
|
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 02:13:14 +01:00
|
|
|
# --with-icu-source processing
|
2016-04-09 04:03:24 +02:00
|
|
|
# now, check that they didn't pass --with-icu-source=deps/icu
|
2023-05-02 21:20:22 +02:00
|
|
|
elif with_icu_source and Path(icu_full_path).resolve() == Path(with_icu_source).resolve():
|
2023-05-01 11:13:16 +02:00
|
|
|
warn(f'Ignoring redundant --with-icu-source={with_icu_source}')
|
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 02:13:14 +01:00
|
|
|
with_icu_source = None
|
|
|
|
# if with_icu_source is still set, try to use it.
|
|
|
|
if with_icu_source:
|
2023-05-02 21:20:22 +02:00
|
|
|
if Path(icu_full_path).is_dir():
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'Deleting old ICU source: {icu_full_path}')
|
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 02:13:14 +01:00
|
|
|
shutil.rmtree(icu_full_path)
|
|
|
|
# now, what path was given?
|
2023-05-02 21:20:22 +02:00
|
|
|
if Path(with_icu_source).is_dir():
|
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 02:13:14 +01:00
|
|
|
# it's a path. Copy it.
|
2023-05-01 11:13:16 +02:00
|
|
|
print(f'{with_icu_source} -> {icu_full_path}')
|
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 02:13:14 +01:00
|
|
|
shutil.copytree(with_icu_source, icu_full_path)
|
|
|
|
else:
|
|
|
|
# could be file or URL.
|
|
|
|
# Set up temporary area
|
2023-05-02 21:20:22 +02:00
|
|
|
if Path(icu_tmp_path).is_dir():
|
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 02:13:14 +01:00
|
|
|
shutil.rmtree(icu_tmp_path)
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_tmp_path.mkdir()
|
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 02:13:14 +01:00
|
|
|
icu_tarball = None
|
2023-05-02 21:20:22 +02:00
|
|
|
if Path(with_icu_source).is_file():
|
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 02:13:14 +01:00
|
|
|
# it's a file. Try to unpack it.
|
|
|
|
icu_tarball = with_icu_source
|
|
|
|
else:
|
|
|
|
# Can we download it?
|
2023-05-02 21:20:22 +02:00
|
|
|
local = icu_tmp_path / with_icu_source.split('/')[-1] # local part
|
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 02:13:14 +01:00
|
|
|
icu_tarball = nodedownload.retrievefile(with_icu_source, local)
|
|
|
|
# continue with "icu_tarball"
|
|
|
|
nodedownload.unpack(icu_tarball, icu_tmp_path)
|
|
|
|
# Did it unpack correctly? Should contain 'icu'
|
2023-05-02 21:20:22 +02:00
|
|
|
tmp_icu = icu_tmp_path / 'icu'
|
|
|
|
if tmp_icu.is_dir():
|
|
|
|
tmp_icu.rename(icu_full_path)
|
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 02:13:14 +01:00
|
|
|
shutil.rmtree(icu_tmp_path)
|
|
|
|
else:
|
|
|
|
shutil.rmtree(icu_tmp_path)
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'--with-icu-source={with_icu_source} did not result in an "icu" dir.')
|
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 02:13:14 +01:00
|
|
|
|
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 07:03:24 +02:00
|
|
|
# ICU mode. (icu-generic.gyp)
|
|
|
|
o['variables']['icu_gyp_path'] = 'tools/icu/icu-generic.gyp'
|
2016-04-09 04:03:24 +02:00
|
|
|
# ICU source dir relative to tools/icu (for .gyp file)
|
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 07:03:24 +02:00
|
|
|
o['variables']['icu_path'] = icu_full_path
|
2023-05-02 21:20:22 +02:00
|
|
|
if not Path(icu_full_path).is_dir():
|
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 02:13:14 +01:00
|
|
|
# can we download (or find) a zipfile?
|
|
|
|
localzip = icu_download(icu_full_path)
|
|
|
|
if localzip:
|
|
|
|
nodedownload.unpack(localzip, icu_parent_path)
|
2018-10-17 18:41:07 +02:00
|
|
|
else:
|
2023-05-02 21:20:22 +02:00
|
|
|
warn(f"* ECMA-402 (Intl) support didn't find ICU in {icu_full_path}..")
|
|
|
|
if not Path(icu_full_path).is_dir():
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'''Cannot build Intl without ICU in {icu_full_path}.
|
|
|
|
Fix, or disable with "--with-intl=none"''')
|
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 02:13:14 +01:00
|
|
|
else:
|
2023-05-01 11:13:16 +02:00
|
|
|
print_verbose(f'* Using ICU in {icu_full_path}')
|
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 07:03:24 +02:00
|
|
|
# Now, what version of ICU is it? We just need the "major", such as 54.
|
|
|
|
# uvernum.h contains it as a #define.
|
2023-05-02 21:20:22 +02:00
|
|
|
uvernum_h = Path(icu_full_path, 'source', 'common', 'unicode', 'uvernum.h')
|
|
|
|
if not uvernum_h.is_file():
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'Could not load {uvernum_h} - is ICU installed?')
|
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 07:03:24 +02:00
|
|
|
icu_ver_major = None
|
|
|
|
matchVerExp = r'^\s*#define\s+U_ICU_VERSION_SHORT\s+"([^"]*)".*'
|
|
|
|
match_version = re.compile(matchVerExp)
|
2019-10-21 13:26:02 +02:00
|
|
|
with io.open(uvernum_h, encoding='utf8') as in_file:
|
|
|
|
for line in in_file:
|
|
|
|
m = match_version.match(line)
|
|
|
|
if m:
|
|
|
|
icu_ver_major = str(m.group(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 07:03:24 +02:00
|
|
|
if not icu_ver_major:
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'Could not read U_ICU_VERSION_SHORT version from {uvernum_h}')
|
2018-11-08 19:49:40 +01:00
|
|
|
elif int(icu_ver_major) < icu_versions['minimum_icu']:
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f"icu4c v{icu_ver_major}.x is too old, v{icu_versions['minimum_icu']}.x or later is required.")
|
2019-08-13 14:53:52 +02:00
|
|
|
icu_endianness = sys.byteorder[0]
|
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 07:03:24 +02:00
|
|
|
o['variables']['icu_ver_major'] = icu_ver_major
|
|
|
|
o['variables']['icu_endianness'] = icu_endianness
|
2023-05-01 11:13:16 +02:00
|
|
|
icu_data_file_l = f'icudt{icu_ver_major}l.dat' # LE filename
|
|
|
|
icu_data_file = f'icudt{icu_ver_major}{icu_endianness}.dat'
|
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 07:03:24 +02:00
|
|
|
# relative to configure
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_data_path = Path(icu_full_path, 'source', 'data', 'in', icu_data_file_l) # LE
|
2023-05-01 11:13:16 +02:00
|
|
|
compressed_data = f'{icu_data_path}.bz2'
|
2023-05-02 21:20:22 +02:00
|
|
|
if not icu_data_path.is_file() and Path(compressed_data).is_file():
|
2019-09-30 20:17:49 +02:00
|
|
|
# unpack. deps/icu is a temporary path
|
2023-05-02 21:20:22 +02:00
|
|
|
if icu_tmp_path.is_dir():
|
2019-09-30 20:17:49 +02:00
|
|
|
shutil.rmtree(icu_tmp_path)
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_tmp_path.mkdir()
|
|
|
|
icu_data_path = icu_tmp_path / icu_data_file_l
|
|
|
|
with icu_data_path.open(mode='wb') as outf:
|
2020-01-05 19:07:19 +01:00
|
|
|
inf = bz2.BZ2File(compressed_data, 'rb')
|
|
|
|
try:
|
|
|
|
shutil.copyfileobj(inf, outf)
|
|
|
|
finally:
|
|
|
|
inf.close()
|
2019-09-30 20:17:49 +02:00
|
|
|
# Now, proceed..
|
|
|
|
|
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 07:03:24 +02:00
|
|
|
# relative to dep..
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_data_in = Path('..', '..', icu_data_path)
|
|
|
|
if not icu_data_path.is_file() and icu_endianness != 'l':
|
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 07:03:24 +02:00
|
|
|
# use host endianness
|
2023-05-02 21:20:22 +02:00
|
|
|
icu_data_path = Path(icu_full_path, 'source', 'data', 'in', icu_data_file) # will be generated
|
|
|
|
if not icu_data_path.is_file():
|
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 07:03:24 +02:00
|
|
|
# .. and we're not about to build it from .gyp!
|
2023-05-01 11:13:16 +02:00
|
|
|
error(f'''ICU prebuilt data file {icu_data_path} does not exist.
|
|
|
|
See the README.md.''')
|
2019-09-30 20:17:49 +02:00
|
|
|
|
|
|
|
# this is the input '.dat' file to use .. icudt*.dat
|
|
|
|
# may be little-endian if from a icu-project.org tarball
|
2023-05-02 21:20:22 +02:00
|
|
|
o['variables']['icu_data_in'] = str(icu_data_in)
|
2019-09-30 20:17:49 +02:00
|
|
|
|
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 07:03:24 +02:00
|
|
|
# map from variable name to subdirs
|
|
|
|
icu_src = {
|
|
|
|
'stubdata': 'stubdata',
|
|
|
|
'common': 'common',
|
|
|
|
'i18n': 'i18n',
|
|
|
|
'tools': 'tools/toolutil',
|
|
|
|
'genccode': 'tools/genccode',
|
|
|
|
'genrb': 'tools/genrb',
|
|
|
|
'icupkg': 'tools/icupkg',
|
|
|
|
}
|
|
|
|
# this creates a variable icu_src_XXX for each of the subdirs
|
|
|
|
# with a list of the src files to use
|
2023-05-01 11:13:16 +02:00
|
|
|
for key, value in icu_src.items():
|
|
|
|
var = f'icu_src_{key}'
|
|
|
|
path = f'../../{icu_full_path}/source/{value}'
|
|
|
|
icu_config['variables'][var] = glob_to_var('tools/icu', path, f'patches/{icu_ver_major}/source/{value}')
|
2019-09-30 20:17:49 +02:00
|
|
|
# calculate platform-specific genccode args
|
|
|
|
# print("platform %s, flavor %s" % (sys.platform, flavor))
|
|
|
|
# if sys.platform == 'darwin':
|
|
|
|
# shlib_suffix = '%s.dylib'
|
|
|
|
# elif sys.platform.startswith('aix'):
|
|
|
|
# shlib_suffix = '%s.a'
|
|
|
|
# else:
|
|
|
|
# shlib_suffix = 'so.%s'
|
|
|
|
if flavor == 'win':
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'obj'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-o ' ]
|
|
|
|
elif with_intl == 'small-icu' or options.cross_compiling:
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'c'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = []
|
|
|
|
elif flavor == 'mac':
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'S'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-a', 'gcc-darwin' ]
|
2023-02-22 05:18:56 +01:00
|
|
|
elif sys.platform == 'os400':
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'S'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-a', 'xlc' ]
|
2019-09-30 20:17:49 +02:00
|
|
|
elif sys.platform.startswith('aix'):
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'S'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-a', 'xlc' ]
|
2022-01-06 16:54:32 +01:00
|
|
|
elif sys.platform == 'zos':
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'S'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-a', 'zos' ]
|
2019-09-30 20:17:49 +02:00
|
|
|
else:
|
|
|
|
# assume GCC-compatible asm is OK
|
|
|
|
icu_config['variables']['icu_asm_ext'] = 'S'
|
|
|
|
icu_config['variables']['icu_asm_opts'] = [ '-a', 'gcc' ]
|
|
|
|
|
2014-10-04 02:42:37 +02:00
|
|
|
# write updated icu_config.gypi with a bunch of paths
|
|
|
|
write(icu_config_name, do_not_edit +
|
2022-03-31 14:44:50 +02:00
|
|
|
pprint.pformat(icu_config, indent=2, width=1024) + '\n')
|
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 07:03:24 +02:00
|
|
|
return # end of configure_intl
|
2013-11-21 17:13:58 +01:00
|
|
|
|
2016-10-06 00:11:48 +02:00
|
|
|
def configure_inspector(o):
|
|
|
|
disable_inspector = (options.without_inspector or
|
|
|
|
options.without_ssl)
|
2017-01-17 20:49:26 +01:00
|
|
|
o['variables']['v8_enable_inspector'] = 0 if disable_inspector else 1
|
2016-10-06 00:11:48 +02:00
|
|
|
|
2020-01-06 04:48:46 +01:00
|
|
|
def configure_section_file(o):
|
|
|
|
try:
|
|
|
|
proc = subprocess.Popen(['ld.gold'] + ['-v'], stdin = subprocess.PIPE,
|
|
|
|
stdout = subprocess.PIPE, stderr = subprocess.PIPE)
|
|
|
|
except OSError:
|
2020-11-04 04:07:34 +01:00
|
|
|
if options.node_section_ordering_info != "":
|
|
|
|
warn('''No acceptable ld.gold linker found!''')
|
2020-01-06 04:48:46 +01:00
|
|
|
return 0
|
|
|
|
|
2023-05-01 11:13:16 +02:00
|
|
|
with proc:
|
|
|
|
match = re.match(r"^GNU gold.*([0-9]+)\.([0-9]+)$",
|
|
|
|
proc.communicate()[0].decode("utf-8"))
|
2020-01-06 04:48:46 +01:00
|
|
|
|
|
|
|
if match:
|
|
|
|
gold_major_version = match.group(1)
|
|
|
|
gold_minor_version = match.group(2)
|
|
|
|
if int(gold_major_version) == 1 and int(gold_minor_version) <= 1:
|
|
|
|
error('''GNU gold version must be greater than 1.2 in order to use section
|
|
|
|
reordering''')
|
|
|
|
|
|
|
|
if options.node_section_ordering_info != "":
|
|
|
|
o['variables']['node_section_ordering_info'] = os.path.realpath(
|
|
|
|
str(options.node_section_ordering_info))
|
|
|
|
else:
|
|
|
|
o['variables']['node_section_ordering_info'] = ""
|
2017-10-07 01:49:45 +02:00
|
|
|
|
2017-10-21 02:19:46 +02:00
|
|
|
def make_bin_override():
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
raise Exception('make_bin_override should not be called on win32.')
|
2017-10-07 01:49:45 +02:00
|
|
|
# If the system python is not the python we are running (which should be
|
2020-12-30 15:09:52 +01:00
|
|
|
# python 3), then create a directory with a symlink called `python` to our
|
2017-10-07 01:49:45 +02:00
|
|
|
# sys.executable. This directory will be prefixed to the PATH, so that
|
|
|
|
# other tools that shell out to `python` will use the appropriate python
|
|
|
|
|
2022-01-01 17:27:27 +01:00
|
|
|
which_python = shutil.which('python')
|
2017-10-16 14:33:47 +02:00
|
|
|
if (which_python and
|
|
|
|
os.path.realpath(which_python) == os.path.realpath(sys.executable)):
|
2017-10-07 01:49:45 +02:00
|
|
|
return
|
|
|
|
|
2023-05-02 21:20:22 +02:00
|
|
|
bin_override = Path('out', 'tools', 'bin').resolve()
|
2017-10-07 01:49:45 +02:00
|
|
|
try:
|
2023-05-02 21:20:22 +02:00
|
|
|
bin_override.mkdir(parents=True)
|
2017-10-07 01:49:45 +02:00
|
|
|
except OSError as e:
|
2023-05-01 11:13:16 +02:00
|
|
|
if e.errno != errno.EEXIST:
|
|
|
|
raise e
|
2017-10-07 01:49:45 +02:00
|
|
|
|
2023-05-02 21:20:22 +02:00
|
|
|
python_link = bin_override / 'python'
|
2017-10-07 01:49:45 +02:00
|
|
|
try:
|
2023-05-02 21:20:22 +02:00
|
|
|
python_link.unlink()
|
2017-10-07 01:49:45 +02:00
|
|
|
except OSError as e:
|
2023-05-01 11:13:16 +02:00
|
|
|
if e.errno != errno.ENOENT:
|
|
|
|
raise e
|
2017-10-07 01:49:45 +02:00
|
|
|
os.symlink(sys.executable, python_link)
|
|
|
|
|
|
|
|
# We need to set the environment right now so that when gyp (in run_gyp)
|
|
|
|
# shells out, it finds the right python (specifically at
|
|
|
|
# https://github.com/nodejs/node/blob/d82e107/deps/v8/gypfiles/toolchain.gypi#L43)
|
2023-05-02 21:20:22 +02:00
|
|
|
os.environ['PATH'] = str(bin_override) + ':' + os.environ['PATH']
|
2017-10-07 01:49:45 +02:00
|
|
|
|
|
|
|
return bin_override
|
|
|
|
|
2015-03-31 07:16:10 +02:00
|
|
|
output = {
|
2016-01-24 17:01:07 +01:00
|
|
|
'variables': {},
|
2015-03-31 07:16:10 +02:00
|
|
|
'include_dirs': [],
|
|
|
|
'libraries': [],
|
|
|
|
'defines': [],
|
|
|
|
'cflags': [],
|
|
|
|
}
|
|
|
|
|
2015-01-15 22:36:38 +01:00
|
|
|
# Print a warning when the compiler is too old.
|
2015-03-31 07:16:10 +02:00
|
|
|
check_compiler(output)
|
2015-01-15 22:36:38 +01:00
|
|
|
|
2013-05-21 18:26:42 +02:00
|
|
|
# determine the "flavor" (operating system) we're building for,
|
|
|
|
# leveraging gyp's GetFlavor function
|
2013-08-02 11:50:45 +02:00
|
|
|
flavor_params = {}
|
2023-05-01 11:13:16 +02:00
|
|
|
if options.dest_os:
|
2013-08-02 11:50:45 +02:00
|
|
|
flavor_params['flavor'] = options.dest_os
|
|
|
|
flavor = GetFlavor(flavor_params)
|
2013-05-21 18:26:42 +02:00
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
configure_node(output)
|
2021-07-07 18:19:00 +02:00
|
|
|
configure_node_lib_files(output)
|
2019-05-23 11:57:31 +02:00
|
|
|
configure_napi(output)
|
2015-05-04 05:57:17 +02:00
|
|
|
configure_library('zlib', output)
|
|
|
|
configure_library('http_parser', output)
|
|
|
|
configure_library('libuv', output)
|
2020-03-02 13:17:35 +01:00
|
|
|
configure_library('brotli', output, pkgname=['libbrotlidec', 'libbrotlienc'])
|
2019-10-27 14:28:04 +01:00
|
|
|
configure_library('cares', output, pkgname='libcares')
|
|
|
|
configure_library('nghttp2', output, pkgname='libnghttp2')
|
2021-03-09 22:50:08 +01:00
|
|
|
configure_library('nghttp3', output, pkgname='libnghttp3')
|
|
|
|
configure_library('ngtcp2', output, pkgname='libngtcp2')
|
2011-11-15 04:02:44 +01:00
|
|
|
configure_v8(output)
|
|
|
|
configure_openssl(output)
|
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 07:03:24 +02:00
|
|
|
configure_intl(output)
|
2015-12-04 09:14:24 +01:00
|
|
|
configure_static(output)
|
2016-10-06 00:11:48 +02:00
|
|
|
configure_inspector(output)
|
2020-01-06 04:48:46 +01:00
|
|
|
configure_section_file(output)
|
2013-05-08 14:10:07 +02:00
|
|
|
|
2022-08-24 04:41:29 +02:00
|
|
|
# configure shareable builtins
|
|
|
|
output['variables']['node_builtin_shareable_builtins'] = []
|
2023-05-01 11:13:16 +02:00
|
|
|
for builtin, value in shareable_builtins.items():
|
2022-08-24 04:41:29 +02:00
|
|
|
builtin_id = 'node_shared_builtin_' + builtin.replace('/', '_') + '_path'
|
|
|
|
if getattr(options, builtin_id):
|
2023-01-10 12:25:19 +01:00
|
|
|
output['defines'] += [builtin_id.upper() + '=' + getattr(options, builtin_id)]
|
2022-08-24 04:41:29 +02:00
|
|
|
else:
|
2023-05-01 11:13:16 +02:00
|
|
|
output['variables']['node_builtin_shareable_builtins'] += [value]
|
2022-08-24 04:41:29 +02:00
|
|
|
|
2020-08-13 18:12:44 +02:00
|
|
|
# Forward OSS-Fuzz settings
|
|
|
|
output['variables']['ossfuzz'] = b(options.ossfuzz)
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
# variables should be a root level element,
|
|
|
|
# move everything else to target_defaults
|
|
|
|
variables = output['variables']
|
|
|
|
del output['variables']
|
2019-03-29 08:38:12 +01:00
|
|
|
variables['is_debug'] = B(options.debug)
|
2015-06-01 23:49:43 +02:00
|
|
|
|
|
|
|
# make_global_settings should be a root level element too
|
|
|
|
if 'make_global_settings' in output:
|
|
|
|
make_global_settings = output['make_global_settings']
|
|
|
|
del output['make_global_settings']
|
|
|
|
else:
|
|
|
|
make_global_settings = False
|
|
|
|
|
2011-11-15 04:02:44 +01:00
|
|
|
output = {
|
|
|
|
'variables': variables,
|
2015-06-01 23:49:43 +02:00
|
|
|
'target_defaults': output,
|
2011-11-15 04:02:44 +01:00
|
|
|
}
|
2015-06-01 23:49:43 +02:00
|
|
|
if make_global_settings:
|
|
|
|
output['make_global_settings'] = make_global_settings
|
|
|
|
|
2018-08-22 17:02:27 +02:00
|
|
|
print_verbose(output)
|
2011-11-15 04:02:44 +01:00
|
|
|
|
2014-10-04 02:42:37 +02:00
|
|
|
write('config.gypi', do_not_edit +
|
2022-03-31 14:44:50 +02:00
|
|
|
pprint.pformat(output, indent=2, width=1024) + '\n')
|
2012-01-17 23:02:15 +01:00
|
|
|
|
2018-06-16 21:28:34 +02:00
|
|
|
write('config.status', '#!/bin/sh\nset -x\nexec ./configure ' +
|
2023-03-29 21:34:58 +02:00
|
|
|
' '.join([shlex.quote(arg) for arg in original_argv]) + '\n')
|
2023-05-02 21:20:22 +02:00
|
|
|
Path('config.status').chmod(0o775)
|
2018-06-16 21:28:34 +02:00
|
|
|
|
2019-04-30 23:59:00 +02:00
|
|
|
|
2012-09-04 16:03:01 +02:00
|
|
|
config = {
|
|
|
|
'BUILDTYPE': 'Debug' if options.debug else 'Release',
|
2017-12-05 01:07:53 +01:00
|
|
|
'NODE_TARGET_TYPE': variables['node_target_type'],
|
2012-09-04 16:03:01 +02:00
|
|
|
}
|
2013-04-24 19:15:36 +02:00
|
|
|
|
2019-04-30 23:59:00 +02:00
|
|
|
# Not needed for trivial case. Useless when it's a win32 path.
|
|
|
|
if sys.executable != 'python' and ':\\' not in sys.executable:
|
|
|
|
config['PYTHON'] = sys.executable
|
|
|
|
|
2013-04-24 19:15:36 +02:00
|
|
|
if options.prefix:
|
|
|
|
config['PREFIX'] = options.prefix
|
|
|
|
|
2019-04-30 23:59:00 +02:00
|
|
|
if options.use_ninja:
|
|
|
|
config['BUILD_WITH'] = 'ninja'
|
|
|
|
|
2020-04-28 21:34:22 +02:00
|
|
|
# On Windows there is another find.exe in C:\Windows\System32
|
|
|
|
if sys.platform == 'win32':
|
|
|
|
config['FIND'] = '/usr/bin/find'
|
|
|
|
|
2019-04-30 23:59:00 +02:00
|
|
|
config_lines = ['='.join((k,v)) for k,v in config.items()]
|
|
|
|
# Add a blank string to get a blank line at the end.
|
|
|
|
config_lines += ['']
|
|
|
|
config_str = '\n'.join(config_lines)
|
2012-09-04 16:03:01 +02:00
|
|
|
|
2017-10-21 02:19:46 +02:00
|
|
|
# On Windows there's no reason to search for a different python binary.
|
|
|
|
bin_override = None if sys.platform == 'win32' else make_bin_override()
|
2017-10-07 01:49:45 +02:00
|
|
|
if bin_override:
|
2023-05-02 21:20:22 +02:00
|
|
|
config_str = 'export PATH:=' + str(bin_override) + ':$(PATH)\n' + config_str
|
2019-04-30 23:59:00 +02:00
|
|
|
|
|
|
|
write('config.mk', do_not_edit + config_str)
|
|
|
|
|
2017-10-07 01:49:45 +02:00
|
|
|
|
2010-11-02 00:03:32 +01:00
|
|
|
|
2019-04-06 20:22:45 +02:00
|
|
|
gyp_args = ['--no-parallel', '-Dconfiguring_node=1']
|
2021-10-19 10:04:22 +02:00
|
|
|
gyp_args += ['-Dbuild_type=' + config['BUILDTYPE']]
|
2013-12-07 05:58:00 +01:00
|
|
|
|
2018-04-26 09:03:26 +02:00
|
|
|
if options.use_ninja:
|
2022-09-21 12:02:40 +02:00
|
|
|
gyp_args += ['-f', 'ninja-' + flavor]
|
2014-08-31 00:59:05 +02:00
|
|
|
elif flavor == 'win' and sys.platform != 'msys':
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'msvs', '-G', 'msvs_version=auto']
|
2012-03-15 23:17:25 +01:00
|
|
|
else:
|
2013-12-07 05:58:00 +01:00
|
|
|
gyp_args += ['-f', 'make-' + flavor]
|
|
|
|
|
2016-08-05 13:23:22 +02:00
|
|
|
if options.compile_commands_json:
|
|
|
|
gyp_args += ['-f', 'compile_commands_json']
|
2023-08-24 16:02:04 +02:00
|
|
|
os.path.islink('./compile_commands.json') and os.unlink('./compile_commands.json')
|
|
|
|
os.symlink('./out/' + config['BUILDTYPE'] + '/compile_commands.json', './compile_commands.json')
|
2016-08-05 13:23:22 +02:00
|
|
|
|
2021-07-20 12:00:19 +02:00
|
|
|
# override the variable `python` defined in common.gypi
|
|
|
|
if bin_override is not None:
|
|
|
|
gyp_args += ['-Dpython=' + sys.executable]
|
|
|
|
|
2022-01-11 10:12:05 +01:00
|
|
|
# pass the leftover non-whitespace positional arguments to GYP
|
|
|
|
gyp_args += [arg for arg in args if not str.isspace(arg)]
|
2012-06-28 01:07:42 +02:00
|
|
|
|
2018-08-22 17:02:27 +02:00
|
|
|
if warn.warned and not options.verbose:
|
2015-01-28 17:46:19 +01:00
|
|
|
warn('warnings were emitted in the configure phase')
|
|
|
|
|
2018-08-22 17:02:27 +02:00
|
|
|
print_verbose("running: \n " + " ".join(['python', 'tools/gyp_node.py'] + gyp_args))
|
2017-04-25 23:36:50 +02:00
|
|
|
run_gyp(gyp_args)
|
2019-03-04 18:47:59 +01:00
|
|
|
info('configure completed successfully')
|