tags:

views:

182

answers:

2

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 ?

A: 

Try resetting your console font.

Robert Munteanu
+3  A: 

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.

Douglas Leeder
BIIIINGO ! Both of them worked for me. Thanx, Douglas.
Roman Pfneudl