- [
c342bda49e
] - src: make cross-context MakeCallback() calls work ( Ben Noordhuis) #9221 - [
08e12c7809
] - src: remove superfluous env_string string ( Ben Noordhuis) #9213 - [
8a9c45a4a9
] - fs: Fix default params for fs.write(Sync) ( Andreas Lind) #7856 - [
f9a5c13ff3
] - dtrace: resolve conversion warnings from SLURP_INT ( Christopher J. Brody) #10143 - [
c9bff043c7
] - http: optimize short path validation ( Brian White) #10654 - [
e7859c217f
]
This file has been truncated, but you can view the full file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
make -C out BUILDTYPE=Release V=1 | |
make[1]: Entering directory `/tmp/gib/node/out' | |
cc '-D_REENTRANT' '-DPURIFY' '-DOPENSSL_NO_COMP' '-DOPENSSL_NO_SSL3' '-DOPENSSL_NO_HEARTBEATS' '-DENGINESDIR="/dev/null"' '-DTERMIOS' '-DOPENSSLDIR="/etc/ssl"' '-DL_ENDIAN' '-DAES_ASM' '-DCPUID_ASM' '-DOPENSSL_BN_ASM_MONT' '-DOPENSSL_CPUID_OBJ' '-DSHA1_ASM' '-DSHA256_ASM' '-DSHA512_ASM' '-DGHASH_ASM' '-DVPAES_ASM' '-DBN_ASM' '-DBF_ASM' '-DBNCO_ASM' '-DDES_ASM' '-DLIB_BN_ASM' '-DMD5_ASM' '-DOPENSSL_BN_ASM' '-DRIP_ASM' '-DRMD160_ASM' '-DWHIRLPOOL_ASM' '-DWP_ASM' '-DOPENSSL_BN_ASM_MONT5' '-DOPENSSL_BN_ASM_GF2m' '-DOPENSSL_IA32_SSE2' '-DBSAES_ASM' '-DDSO_DLFCN' '-DHAVE_DLFCN_H' -I../deps/openssl -I../deps/openssl/openssl -I../deps/openssl/openssl/crypto -I../deps/openssl/openssl/crypto/asn1 -I../deps/openssl/openssl/crypto/evp -I../deps/openssl/openssl/crypto/md2 -I../deps/openssl/openssl/crypto/modes -I../deps/openssl/openssl/crypto/store -I../deps/openssl/openssl/include -Wno-missing-field-initializers -pthread -Wall -Wextra -W |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# System Info: | |
1. `uname -a`: | |
Linux glub 4.4.0-31-generic #50-Ubuntu SMP Wed Jul 13 00:07:12 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux | |
2. `lsb_release -a`: | |
No LSB modules are available. | |
Distributor ID: Ubuntu | |
Description: Ubuntu 16.04.1 LTS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
println "\n### BUILD PARAMETERS ###" | |
def pr = [] // Mutable parameter set to pass to jobs. I know this is crazy. | |
String printParams = '' // String of params to print | |
for (param in params) { | |
printParams += param.toString() + '\n' | |
if (param.key != 'NODE_VERSIONs') { | |
pr.push(string(name: param.key, value: param.value)) | |
} | |
} | |
println printParams |
- [
d066db7014
] - (SEMVER-MINOR) cluster: support windowsHide option for workers ( Todd Wong) #17412 - [
f82439b6a0
] - (SEMVER-MINOR) http: add rawPacket in err ofclientError
event ( XadillaX) #17672 - [
c5c4a534d1
] - (SEMVER-MINOR) stream: rm {writeable/readable}State.length ( Calvin Metcalf) #12857 - [
4b0c8759d3
] - (SEMVER-MINOR) stream: add flow and buffer properties to streams ( Calvin Metcalf) #12855 - [
6d9b1e4c83
] - (SEMVER-MINOR) util: allow wildcards in NODE_DEBUG variable ( Tyler) [#17
- [
1ad7df6acc
] - http2: use aliased buffer for perf stats, add stats ( James M Snell) #18020 - [
ef317014e2
] - doc: compact eslint directives in common/README ( Vse Mozhet Byt) #17971 - [
b817a8a6b2
] - lib: enable dot-notation eslint rule ( Anatoli Papirovski) #18007 - [
bb9219bd19
] - src: update make for new code coverage locations ( Michael Dawson) #17987 - [
b593d946e4
] - doc: re-alphabetise sections in common/README.md ( Vse Mozhet Byt) #17971 - [[
3bcdb3b996
](https://github.com/nodejs/no
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
extern crate structopt; | |
#[macro_use] | |
extern crate structopt_derive; | |
use structopt::StructOpt; | |
#[derive(StructOpt, Debug)] | |
#[structopt()] | |
enum Cmds { | |
#[structopt(name = "add")] |
- deps:
- crypto:
OlderNewer