Re: [cfe-users] Why doesn't clang use colors for diagnostics by default?

2015-09-09 Thread Richard Trieu via cfe-users
Are you invoking Clang with "clang foo.cc" or "clang -cc1 foo.cc"? The first should detect if you have a color capable terminal and automatically turn on color diagnostics while the second needs the flag explicitly. The other possibility is that the Clang you are using was compiled with the libra

[cfe-users] Generate mingw object files via clang-cl

2015-09-09 Thread JVApen via cfe-users
Hi all We are looking at a large project that has been written only with the MSVC compiler. I've already tried to compile this with Clang-Cl, which goes actually very nicely and already uncovered some bugs. (Let me thank all developers that already worked on making clang-cl such a good tool) Unfo