One of our customers needs to build our program without SSE, because it is on fairly old hardware. My problem is that even if I change the project settings for all sections to disable SSE for all libraries and binaries, it would seem that there is still some kind of dependency that is compiled with SSE instructions, which will lead to application failure .
My questions are: is there a way to take a binary or library and determine if it contains SSE instructions for a specific version of SSE or not?
We use VS, and the language is C ++, so any tool applicable to this toolbox will be awesome.
source
share