Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的编译器只使用指定版本的 SSE 的指令。
现在,看起来-msse2 -mno-sse3 -mno-sse4 -mno-sse41 -mno-sse42可以,但是我正在寻找类似-monly-sse2.
-msse2 -mno-sse3 -mno-sse4 -mno-sse41 -mno-sse42
-monly-sse2
除非您指定-msse3/-march=<cpu-with-sse3>只有 SSE2 将在 x86-64 上使用(甚至在 x86 上使用更低的指令集)。
-msse3
-march=<cpu-with-sse3>