Intel C++ compiler as an alternative to Microsoft's?

后端 未结 8 1927
梦如初夏
梦如初夏 2021-01-31 03:30

Is anyone here using the Intel C++ compiler instead of Microsoft\'s Visual c++ compiler?

I would be very interested to hear your experience about integration, performan

8条回答
  •  借酒劲吻你
    2021-01-31 04:30

    I'm not using Intel C++ compiler at work / personal (I wish I would).

    I would use it because it has:

    • Excellent inline assembler support. Intel C++ supports both Intel and AT&T (GCC) assembler syntaxes, for x86 and x64 platforms. Visual C++ can handle only Intel assembly syntax and only for x86.

    • Support for SSE3, SSSE3, and SSE4 instruction sets. Visual C++ has support for SSE and SSE2.

    • Is based on EDG C++, which has a complete ISO/IEC 14882:2003 standard implementation. That means you can use / learn every C++ feature.

提交回复
热议问题