Gcc error messages (page code or encoding problem)

I am using debian and g ++. When compiling, I get error messages like these:

In the static member function ΓÇÿstatic void * v4 :: _ mb_blocs :: operator new (size_t) ΓÇÖ:

Can I tell gcc to make its output in utf-8 or something like that?

+3
source share
2 answers

Normally gcc is output in ASCII or UTF-8, so you should check if your terminal is really configured for UTF-8 ( locale charmap).

Also try:

LC_ALL=C LANG=C gcc

to get ASCII.

+5
source

Try resetting the console font.

0
source

Source: https://habr.com/ru/post/1719253/


All Articles