diff options
author | RabsRincon <rubrinbla@gmail.com> | 2017-11-23 19:50:47 +0100 |
---|---|---|
committer | RabsRincon <rubrinbla@gmail.com> | 2017-11-23 19:50:47 +0100 |
commit | cb0fc7fb044cd78e1a4bf535f7009db6b600b6fb (patch) | |
tree | 19808fbb8c5db12243f5dee4eda19f65e6dae960 /lib/compilers | |
parent | 298cd1634735bc955451b0c3d48d6fb92809e3b6 (diff) | |
download | compiler-explorer-cb0fc7fb044cd78e1a4bf535f7009db6b600b6fb.tar.gz compiler-explorer-cb0fc7fb044cd78e1a4bf535f7009db6b600b6fb.zip |
Finish off #536
Still work to do on #640 but this one is already ok!
Diffstat (limited to 'lib/compilers')
-rw-r--r-- | lib/compilers/golang.js (renamed from lib/compilers/newgol.js) | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/compilers/newgol.js b/lib/compilers/golang.js index eec11a291..08c30c48d 100644 --- a/lib/compilers/newgol.js +++ b/lib/compilers/golang.js @@ -58,7 +58,7 @@ function compilenewgol(info, env) { }; compiler.optionsForFilter = function (filters, outputFilename, userOptions) { - return ['-o', outputFilename, '-S']; + return ['tool', 'compile', '-o', outputFilename, '-S']; }; return compiler.initialise(); } |