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/zig.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/zig.js')
-rw-r--r-- | lib/compilers/zig.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/compilers/zig.js b/lib/compilers/zig.js index 52e67c8b0..396676c77 100644 --- a/lib/compilers/zig.js +++ b/lib/compilers/zig.js @@ -84,6 +84,10 @@ class ZigCompiler extends BaseCompiler { const blacklist = /^(((--(cache-dir|name|output|verbose))|(-mllvm)).*)$/; return _.filter(userOptions, option => !blacklist.test(option)); } + + isCfgCompiler(/*compilerVersion*/) { + return true; + } } module.exports = ZigCompiler; |