*** orig/QtCore/qglobal.h 2014-11-21 14:20:14.592602000 -0500 --- QtCore/qglobal.h 2014-11-21 14:26:00.898995000 -0500 *************** *** 473,481 **** # if defined(__MINGW32__) # define Q_CC_MINGW # endif ! # if defined(__INTEL_COMPILER) /* Intel C++ also masquerades as GCC 3.2.0 */ # define Q_CC_INTEL # endif # if defined(__clang__) /* Clang also masquerades as GCC 4.2.1 */ --- 473,484 ---- # if defined(__MINGW32__) # define Q_CC_MINGW # endif ! # if defined(__INTEL_COMPILER) && __INTEL_COMPILER < 1500 /* Intel C++ also masquerades as GCC 3.2.0 */ # define Q_CC_INTEL + #else + /* Intel C++ 15.0 and later are gcc compatible */ + # define Q_CC_GNU # endif # if defined(__clang__) /* Clang also masquerades as GCC 4.2.1 */