views:

429

answers:

2

When I use Visual Studio for a C++ application, it generates a cl.exe command line with an /FD option.

But I can't find that option in the compiler documentation

Is it a legacy option? what does it do?

+3  A: 

See here. It's an IDE minimal rebuild and is not exposed to users except through the property page, which is what you're seeing.

Matt Davis
Ganesh R.
@Ganesh R.: I had to do a double-take myself.
Matt Davis
So it's no longer undocumented...
Michael Burr
A: 

Thanks Matt, appreciate the time and effort.

Cheers

MuradKhan