diff options
author | Partouf <partouf@gmail.com> | 2019-01-10 23:55:04 +0100 |
---|---|---|
committer | Partouf <partouf@gmail.com> | 2019-01-10 23:55:04 +0100 |
commit | 38d004a187f5ecb5441eceadfeb30e26d098aae6 (patch) | |
tree | 0e8d5a0b5866d69ed29b6f1e2829751b065d5545 /lib/compilers/ispc.js | |
parent | d8c8ec433ad3d9886b0dc8b8024744dc66d577f9 (diff) | |
parent | e9bead3c04d853b1bbcad985159dd586e5ab21bb (diff) | |
download | compiler-explorer-38d004a187f5ecb5441eceadfeb30e26d098aae6.tar.gz compiler-explorer-38d004a187f5ecb5441eceadfeb30e26d098aae6.zip |
Merge remote-tracking branch 'matt/master' into compilerargs
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; |