diff options
author | Matt Godbolt <mgodbolt@drw.com> | 2016-12-19 21:16:37 -0600 |
---|---|---|
committer | Matt Godbolt <mgodbolt@drw.com> | 2016-12-19 21:16:37 -0600 |
commit | 8ca2b36d5ed311213918d8e24fd7a9889206d2df (patch) | |
tree | fdcb5c0f4f24261c8914d874e223a6dc340a693b /lib/compilers/rust.js | |
parent | 4839c9f5e6c227f5835f8c8b7e97e48bd4a593ee (diff) | |
download | compiler-explorer-8ca2b36d5ed311213918d8e24fd7a9889206d2df.tar.gz compiler-explorer-8ca2b36d5ed311213918d8e24fd7a9889206d2df.zip |
Intel fixes for rust
Diffstat (limited to 'lib/compilers/rust.js')
-rw-r--r-- | lib/compilers/rust.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/rust.js b/lib/compilers/rust.js index 35e8fb276..7e98c69c5 100644 --- a/lib/compilers/rust.js +++ b/lib/compilers/rust.js @@ -26,6 +26,7 @@ var Compile = require('../base-compiler'); function compileRust(info, env) { var compiler = new Compile(info, env); + compiler.compiler.supportsIntel = true; compiler.optionsForFilter = function (filters, outputFilename) { var options = ['-g', '-o', this.filename(outputFilename)]; // TODO: binary not supported(?) |