diff options
Diffstat (limited to 'xmake/modules/core/tools/ml.lua')
| -rw-r--r-- | xmake/modules/core/tools/ml.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/xmake/modules/core/tools/ml.lua b/xmake/modules/core/tools/ml.lua index 6b4155e29..6eb7c529d 100644 --- a/xmake/modules/core/tools/ml.lua +++ b/xmake/modules/core/tools/ml.lua @@ -104,7 +104,8 @@ function _compile1(self, sourcefile, objectfile, dependinfo, flags) os.mkdir(path.directory(objectfile)) -- compile it - os.runv(_compargv1(self, sourcefile, objectfile, flags)) + local program, argv = _compargv1(self, sourcefile, objectfile, flags) + os.runv(program, argv, {vs_unicode_output = true}) end -- make the compile arguments list |
