This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: Tokens not displaying
- From: Ian Lance Taylor <iant at google dot com>
- To: Justin Luitjens <luitjens at cs dot utah dot edu>
- Cc: gcc-help at gcc dot gnu dot org
- Date: 26 Aug 2006 19:12:09 -0700
- Subject: Re: Tokens not displaying
- References: <44F0BADA.60102@cs.utah.edu>
Justin Luitjens <luitjens@cs.utah.edu> writes:
> I have a fresh install of Suse 10.1 with gcc 4.1.0. For some reason
> compile errors are not displaying tokens. Instead i'm getting
> messages like this:
>
> test.cc: In function Ã:
> test.cc:7: error: expected `;' before à token
>
>
> Is there something I can do to replace the à with the actual tokens?
Try setting the environment variable LANG to C.
If you use bash:
export LANG=C
Ian