An open API service indexing awesome lists of open source software.

https://github.com/strml/lodash-heapdump-sigill

Reproduction of a Node/V8 bug when heapdumping
https://github.com/strml/lodash-heapdump-sigill

Last synced: 8 months ago
JSON representation

Reproduction of a Node/V8 bug when heapdumping

Awesome Lists containing this project

README

          

# Node v8.9.4 Heapdump SIGILL in Debug

An odd bug in Node or V8 causes heapdumping to fail in Debug builds. In Release, this appears to cause a spurious
segfault that anecdotally manifests more often with a larger heap.

Tracking in https://github.com/nodejs/node/issues/18223.

To reproduce:

```bash
# Compile Node v8.9.4 in Debug mode
git clone git@github.com:nodejs/node.git
cd node
git checkout v8.9.4
./configure --debug; make -j8

# Clone & run this project with that build
cd ..
git clone git@github.com:STRML/lodash-heapdump-sigill.git
cd lodash-heapdump-sigill
../node/out/Debug/node index.js
```