开发者

Do the higher level SSE flags imply the lower ones in GCC / clang?

开发者 https://www.devze.com 2023-01-30 07:14 出处:网络
For example, if you use -msse4, does this imply that it will also use -mssse3, -msse3, -msse2 and so on or do you have to explicitly add those flag开发者_开发问答s as well?You only need the highest le

For example, if you use -msse4, does this imply that it will also use -mssse3, -msse3, -msse2 and so on or do you have to explicitly add those flag开发者_开发问答s as well?


You only need the highest level switch, e.g. -mssse3 implies -msse3, -msse2 etc. It doesn't cause any problems if you add the lower level switches, but they are redundant.

0

精彩评论

暂无评论...
验证码 换一张
取 消