Hello,
I use debian and g++. When compiling i get error-messages like these:
In static member function ΓÇÿstatic void* v4::_mb_blocs::operator new(size_t)ΓÇÖ:
Can i tell gcc to do its output in utf-8 or something ?
Hello,
I use debian and g++. When compiling i get error-messages like these:
In static member function ΓÇÿstatic void* v4::_mb_blocs::operator new(size_t)ΓÇÖ:
Can i tell gcc to do its output in utf-8 or something ?
Normally gcc outputs in ASCII or UTF-8, so you should check if your terminal is actually configured for UTF-8 (locale charmap
).
Also try:
LC_ALL=C LANG=C gcc
to get ASCII.