diff options
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(); } |