show/hide this revision's text 2 typo

I don't think there is a simple switch, because gcc's command-line options are very different from VSs. In any case, just running the compiler will be non-trivial, as yur your build system probably sets a bunch of preprocessor defines and build variables that need to be set for the compile to succeed.

If your colleague is working on Unix, he probably has a make, scons or cmake-based build system anyway. You can use Cygwin to install the standard Unix toolchain on Windows, including gcc, make, flex, bison and all the other Unix goodies. There are native versions of scons and cmake, but those will try to use VS, so that won't help you. I haven't tried installing them through Cygwin to see if that forces them to gcc, but that might not be relevant to you.

Creating a make system that uses the VS compiler is possible but painful (been there, done that). And a different question. ;)

You can then use a special buildstep to run the gcc compile from inside VS. It would be better to have a separate build target (like Debug and Release), and you can create those in the project files (they're just ASCII files, check them out), but I'm not enough of a VS person to know how easy that would be to do. Keeping it up-to-date will be a little painful, you might want to write a script to create it automatically.

show/hide this revision's text 1

I don't think there is a simple switch, because gcc's command-line options are very different from VSs. In any case, just running the compiler will be non-trivial, as yur build system probably sets a bunch of preprocessor defines and build variables that need to be set for the compile to succeed.

If your colleague is working on Unix, he probably has a make, scons or cmake-based build system anyway. You can use Cygwin to install the standard Unix toolchain on Windows, including gcc, make, flex, bison and all the other Unix goodies. There are native versions of scons and cmake, but those will try to use VS, so that won't help you. I haven't tried installing them through Cygwin to see if that forces them to gcc, but that might not be relevant to you.

Creating a make system that uses the VS compiler is possible but painful (been there, done that). And a different question. ;)

You can then use a special buildstep to run the gcc compile from inside VS. It would be better to have a separate build target (like Debug and Release), and you can create those in the project files (they're just ASCII files, check them out), but I'm not enough of a VS person to know how easy that would be to do. Keeping it up-to-date will be a little painful, you might want to write a script to create it automatically.