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/haskell.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/haskell.js')
-rw-r--r-- | lib/compilers/haskell.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/compilers/haskell.js b/lib/compilers/haskell.js index a4080192f..78963748e 100644 --- a/lib/compilers/haskell.js +++ b/lib/compilers/haskell.js @@ -1,7 +1,7 @@ var Compile = require('../base-compiler'); -function compileHaskell(info, env) { - var compiler = new Compile(info, env); +function compileHaskell(info, env, langId) { + var compiler = new Compile(info, env, langId); compiler.optionsForFilter = function (filters, outputFilename, userOptions) { return ['-S', '-g', '-o', this.filename(outputFilename)]; }; |