diff options
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index 0ad177ecf..bb571dd8a 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -33,6 +33,10 @@ class ISPCCompiler extends BaseCompiler { getArgumentParser() { return argumentParsers.ISPC; } + + isCfgCompiler(/*compilerVersion*/) { + return true; + } } module.exports = ISPCCompiler; |