This file contains hidden or 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
#!/usr/bin/env node | |
var fs = require('fs'); | |
var argv = require('optimist') | |
.usage('Merge multiple clang compile_commands.json into one file.') | |
.demand('o') | |
.alias('o', 'output') | |
.describe('o', "Output merged compile_command.json file.") | |
.argv; | |
var commands = []; |