diff options
| -rw-r--r-- | xmake/modules/core/tools/ml.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/modules/core/tools/ml.lua b/xmake/modules/core/tools/ml.lua index c1bea35b3..b0acd11de 100644 --- a/xmake/modules/core/tools/ml.lua +++ b/xmake/modules/core/tools/ml.lua @@ -104,8 +104,8 @@ function _compile1(self, sourcefile, objectfile, dependinfo, flags) try { function () - -- use vstool to compile and enable vs_unicode_output @see https://github.com/xmake-io/xmake/issues/528 - vstool.runv(_compargv1(self, sourcefile, objectfile, flags)) + -- @note we need not uses vstool.runv to enable unicode output for ml.exe + os.runv(_compargv1(self, sourcefile, objectfile, flags)) end, catch { |
