Skip to content

Commit

Permalink
bsd form
Browse files Browse the repository at this point in the history
  • Loading branch information
cjdelisle committed Oct 12, 2015
1 parent 3c44967 commit 8f1e92c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions node_build/builder.js
Expand Up @@ -833,6 +833,11 @@ var probeCompiler = function (state, callback) {
compilerType.version = err.match(/LLVM version ([^ ]+) /)[1];
}
}
if (/clang version /.test(err)) {
compilerType.isLLVM = true;
compilerType.clang = true;
compilerType.version = err.match(/clang version ([^ ]+) /)[1];
}
if (/gcc version /.test(err)) {
compilerType.isGCC = true;
compilerType.version = err.match(/gcc version ([^ ]+) /)[1];
Expand Down

0 comments on commit 8f1e92c

Please sign in to comment.