diff options
author | Marc Tiehuis <marctiehuis@gmail.com> | 2018-09-24 21:12:37 +1200 |
---|---|---|
committer | Marc Tiehuis <marctiehuis@gmail.com> | 2018-09-24 21:12:57 +1200 |
commit | 7f08a4ec300ca7207ca0759d0ede649699c3ca4b (patch) | |
tree | c632d6d2192808fa556463da0272e533ddd5127b /lib/compilers/zig.js | |
parent | 822d1f648e4c9fbe62629b00216687d4ace2f6dc (diff) | |
download | compiler-explorer-7f08a4ec300ca7207ca0759d0ede649699c3ca4b.tar.gz compiler-explorer-7f08a4ec300ca7207ca0759d0ede649699c3ca4b.zip |
Stop Zig compiler creating C header files
Fixes #1083.
Diffstat (limited to 'lib/compilers/zig.js')
-rw-r--r-- | lib/compilers/zig.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/compilers/zig.js b/lib/compilers/zig.js index daa2f61d5..9567fc40b 100644 --- a/lib/compilers/zig.js +++ b/lib/compilers/zig.js @@ -47,7 +47,8 @@ class ZigCompiler extends BaseCompiler { let options = [ 'build-obj', '--cache-dir', path.dirname(outputFilename), - '--output', this.filename(outputFilename) + '--output', this.filename(outputFilename), + '--output-h', '/dev/null', ]; if (!filters.binary) { |