Reputation: 685
I found this list of flags:
and I'd like to try and add some of them to my project. I can't seem to find the way to do it on a visual studio 2010 platform :(
Does anyone know how to do it?
Thanks!!!
Upvotes: 3
Views: 2753
Reputation: 11638
The /arch flag in Visual Studio allows you to specify the target processor architecture, and includes support for SSE2, amongst others. This MSDN page describes how the flag works in the context of SIMD/SSE2.
Visual Studio also supports explicit usage of SSE2 instructions via compiler intrinsics.
Upvotes: 1