diff options
Diffstat (limited to 'lib/compilers/Wine-CL.js')
-rw-r--r-- | lib/compilers/Wine-CL.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/compilers/Wine-CL.js b/lib/compilers/Wine-CL.js index 65a548825..82422b45e 100644 --- a/lib/compilers/Wine-CL.js +++ b/lib/compilers/Wine-CL.js @@ -48,6 +48,12 @@ function compileCl(info, env) { return false; }; + compile.getArgumentParser = function () { + return function (compiler) { + return compiler; + } + }; + compile.postProcessAsm = function(result) { return RunCLDemangler(this, result); }; |