0.0.2 • Published 9 years ago

node-cxxfilt v0.0.2

Weekly downloads
4
License
MIT
Repository
github
Last release
9 years ago

c++filt pipe for node

Make sure c++filt for your target platform is installed.

const cxxfilt = require('node-cxxfilt');
cxxfilt(process.stdin).pipe(process.stdout);

If you're familiar with cross compiling, node-cxxfilt also honours the usual CROSS_COMPILE environment variable for targeting different platforms.

process.env.CROSS_COMPILE = 'arm-linux-';
const cxxfilt = require('node-cxxfilt');
cxxfilt(process.stdin).pipe(process.stdout);