Skip to content

Instantly share code, notes, and snippets.

@richardlau
richardlau / build.log
Created November 9, 2018 18:39
Compilation errors on master
C:\work\node\github\node>vcbuild projgen openssl-no-asm release
Looking for Python 2.x
Looking for Visual Studio 2017
Found MSVS version 15.0
configure --with-ltcg --dest-cpu=x64 --openssl-no-asm
WARNING: --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
WARNING: warnings were emitted in the configure phase
Project files generated.
@richardlau
richardlau / NodeReport.20161028.145341.75227.001.txt
Last active October 28, 2016 18:58
nodereport test 3 fails
================================================================================
==== NodeReport ================================================================
Event: Allocation failed - JavaScript heap out of memory, location: "CALL_AND_RETRY_LAST"
Filename: NodeReport.20161028.145341.75227.001.txt
Dump event time: 2016/10/28 14:53:41
Module load time: 2016/10/28 14:53:40
Process ID: 75227
Node.js version: v6.9.1
api_call.js: triggering a NodeReport via API call...
Writing Node.js report to file: NodeReport.20161028.143703.61091.001.txt
Node.js report completed
exception.js: throwing an uncaught user exception....
Writing Node.js report to file: NodeReport.20161028.143703.61097.001.txt
fatalerror.js: allocating excessive javascript heap memory....
loop.js: going into loop now.... use kill -USR2 <pid> to trigger NodeReport
Node.js report completed
@richardlau
richardlau / build.linux-ppc64le.log
Created April 20, 2016 18:13
`make binary` on ppc64le
riclau@j9nodelevm1:~/sandbox/github/nodejs$ uname -a
Linux j9nodelevm1.ottawa.ibm.com 3.13.0-29-generic #53-Ubuntu SMP Wed Jun 4 21:02:53 UTC 2014 ppc64le ppc64le ppc64le GNU/Linux
riclau@j9nodelevm1:~/sandbox/github/nodejs$
riclau@j9nodelevm1:~/sandbox/github/nodejs$ make -j 8 binary 2>&1 | tee ../build.linux-ppc64le.log
rm -rf node-v6.0.0-linux-x86
rm -rf out/deps out/Release
/usr/bin/python ./configure \
--prefix=/ \
--dest-cpu=x86 \
@richardlau
richardlau / build.linux-arm.log
Created April 20, 2016 18:12
`make binary` on arm
riclau@tau1 ~/node-1 $ uname -a
Linux tau1 4.1.13-v7+ #826 SMP PREEMPT Fri Nov 13 20:19:03 GMT 2015 armv7l GNU/Linux
riclau@tau1 ~/node-1 $
riclau@tau1 ~/node-1 $ make binary 2>&1 | tee ../build.linux-arm.log
rm -rf node-v6.0.0-linux-x86
rm -rf out/deps out/Release
python ./configure \
--prefix=/ \
--dest-cpu=x86 \
--tag= \
@richardlau
richardlau / racy-entries-after.txt
Created April 19, 2016 18:40
fs-vacuum racy-entries test on AIX before fix for EEXIST
-bash-4.3$ npm test
> [email protected] test /home/users/riclau/sandbox/github/fs-vacuum
> standard && tap test/*.js
test/arguments.js ..................................... 5/5
test/base-leaf-mismatch.js ............................ 2/2 620ms
test/no-entries-file-no-purge.js .................... 19/19
test/no-entries-link-no-purge.js .................... 21/21
test/no-entries-no-purge.js ......................... 15/15
@richardlau
richardlau / racy-entries-before.txt
Created April 19, 2016 18:39
fs-vacuum racy-entries test on AIX before fix for EEXIST
-bash-4.3$ npm test
> [email protected] test /home/users/riclau/sandbox/github/fs-vacuum
> standard && tap test/*.js
test/arguments.js ..................................... 5/5
test/base-leaf-mismatch.js ............................ 2/2 678ms
test/no-entries-file-no-purge.js .................... 19/19
test/no-entries-link-no-purge.js .................... 21/21
test/no-entries-no-purge.js ......................... 15/15
@richardlau
richardlau / npm-debug.log
Created April 15, 2016 17:19
npm legacy tests on AIX
This file has been truncated, but you can view the full file.
0 info it worked if it ends with ok
1 verbose cli [ '/scratch/jenkins-local/new/workspace/github-node-v4.x-test/SUITE/npm/arch/ppc64/compiler/gcc48/distro/aix61/labels/bvt/os/aix/node/out/Release/node',
1 verbose cli '/scratch/jenkins-local/new/workspace/github-node-v4.x-test/SUITE/npm/arch/ppc64/compiler/gcc48/distro/aix61/labels/bvt/os/aix/tmpdir/npm-test-8388834/root/bin/npm',
1 verbose cli 'install',
1 verbose cli '/scratch/jenkins-local/new/workspace/github-node-v4.x-test/SUITE/npm/arch/ppc64/compiler/gcc48/distro/aix61/labels/bvt/os/aix/node/deps/npm' ]
2 info using [email protected]
3 info using [email protected]
4 verbose install initial load of /scratch/jenkins-local/new/workspace/github-node-v4.x-test/SUITE/npm/arch/ppc64/compiler/gcc48/distro/aix61/labels/bvt/os/aix/tmpdir/npm-test-8388834/root/lib/package.json
5 verbose readDependencies loading dependencies from /scratch/jenkins-local/new/workspace/github-node-v4.x-test/SUITE/npm/arch/ppc64/compiler/gcc48/distro/aix61/labels/bvt/os/aix/tmpdir/npm-test-8
@richardlau
richardlau / gist:baaa5dbbb29b6e1701cb09de9203ac80
Created April 15, 2016 17:00
v4.x-staging branch: make test-npm
-bash-4.1$ make test-npm
make -C out BUILDTYPE=Release V=1
make[1]: Entering directory `/home/users/riclau/sandbox/github/node/out'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/users/riclau/sandbox/github/node/out'
ln -fs out/Release/node node
NODE=./node tools/test-npm.sh
npm WARN package.json [email protected] Non-dependency in bundleDependencies: ansi-regex
npm WARN package.json [email protected] Non-dependency in bundleDependencies: imurmurhash
npm WARN engine [email protected]: wanted: {"node":">=0.8"} (current: {"node":"4.4.3-pre","npm":"2.15.2"})
@richardlau
richardlau / gist:a6767ba2333202d2dfd7b9c29d4ed26a
Created April 15, 2016 15:40
Node v4.4.3 with 4b71896f3df29c00eaf559778e12e1357a6468c7+PATH: make test-npm
-bash-4.1$ PATH=~/sandbox/github/node/test-npm/bin/:$PATH make test-npm
make -C out BUILDTYPE=Release V=1
make[1]: Entering directory `/home/users/riclau/sandbox/github/node/out'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/users/riclau/sandbox/github/node/out'
ln -fs out/Release/node node
NODE=./node tools/test-npm.sh
npm WARN package.json [email protected] Non-dependency in bundleDependencies: ansi-regex
npm WARN package.json [email protected] Non-dependency in bundleDependencies: imurmurhash
npm WARN engine [email protected]: wanted: {"node":"0.12.x || 0.10.x || 0.8.x"} (current: {"node":"4.4.3","npm":"2.15.1"})