How can msbuild.exe be set up to embed the proper value for SSE2 into _M_IX86_FP?
问题 I have built a solution with VS2010 Express Edition with SSE2 set in the properties C++ code generation enhanced instruction set. Then in the program test against predefined MARCO _M_IX86_FP yields as expected the value of 2. The same project built with msbuild.exe with /p:"VCBuildAdditionalOptions=/arch:SSE2" appears to build the solution with /arch:SSE2 in place for each project. But, the test against predefined MARCO _M_IX86_FP yields a value of zero. How can msbuild.exe be set up to embed