开发者

Funny characters in Visual Studio output window

开发者 https://www.devze.com 2022-12-12 06:24 出处:网络
I have written an External Tool that uses plink.exe to execute gcc on a Linux system and then capture the output back on VS\'s output window (there is a checkmark in Tools/External Tools/Use Output Wi

I have written an External Tool that uses plink.exe to execute gcc on a Linux system and then capture the output back on VS's output window (there is a checkmark in Tools/External Tools/Use Output Window). But Linux outputs with UTF-8 and so I get some garbage. Is开发者_开发知识库 there any way to get VS to translate that UTF-8 output to readable output?

For example, Linux is trying to output this:

test.c:214: warning: conflicting types for ‘test_zero_read’

but it shows up in VS's output window like this:

test.c:214: warning: conflicting types for ‘test_zero_read’


Changing the font of the output window can also address the issue of the characters.
In VS go to Tools -> Options -> Environment -> Fonts and Colors ->Show Settings for: Output Window


pipe the output on the linux box via unix2dos before finishing.

Edit: another go:

iconv -f utf8 -t iso89 oldfile > newfile

(from here)

0

精彩评论

暂无评论...
验证码 换一张
取 消