diff options
author | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2017-12-02 04:01:12 +0100 |
commit | 63ed0e79c5ab12da3b697b04b41f8075c8b79f87 (patch) | |
tree | 325e699af0a6068655e2695839b9109416b935f6 /lib/compilers/ispc.js | |
parent | c1ff139b6a52c7299961b26b4f5b1af5b0111765 (diff) | |
download | compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.tar.gz compiler-explorer-63ed0e79c5ab12da3b697b04b41f8075c8b79f87.zip |
Change enough stuff as to get it running
Not saying it works, but if you hack few more things, you can start
to use it. Commiting just in case
Diffstat (limited to 'lib/compilers/ispc.js')
-rw-r--r-- | lib/compilers/ispc.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/ispc.js b/lib/compilers/ispc.js index 3bb0f124f..ff2b8054f 100644 --- a/lib/compilers/ispc.js +++ b/lib/compilers/ispc.js @@ -1,7 +1,7 @@ var Compile = require('../base-compiler'); -function compileISPC(info, env) { - var compiler = new Compile(info, env); +function compileISPC(info, env, langId) { + var compiler = new Compile(info, env, langId); compiler.optionsForFilter = function (filters, outputFilename, userOptions) { return ['--target=sse2-i32x4', '--emit-asm', '-g', '-o', this.filename(outputFilename)]; }; |