diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2010-08-11 18:30:18 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2010-08-24 10:36:27 (GMT) |
commit | b46f40ac8998a98122b3d85a9fed6bf9f094edd4 (patch) | |
tree | 04ab600498655a3b1937e3ac900538aec5750a6b /src/gui/gui.pro | |
parent | aa442648396e1367d6236801c5e1ad36884e4a81 (diff) | |
download | Qt-b46f40ac8998a98122b3d85a9fed6bf9f094edd4.zip Qt-b46f40ac8998a98122b3d85a9fed6bf9f094edd4.tar.gz Qt-b46f40ac8998a98122b3d85a9fed6bf9f094edd4.tar.bz2 |
linux-icc can take -msse2, -msse3, etc. flags, so enable this as well
Otherwise, we actually get compilation errors because configure detected
that the compiler supports this, so QT_HAVE_SSSE3 is defined, but
we then compile qimage_ssse3.cpp without -mssse3
(Among others)
Reviewed-By: Benjamin Poulain
Diffstat (limited to 'src/gui/gui.pro')
-rw-r--r-- | src/gui/gui.pro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui.pro b/src/gui/gui.pro index 3943e26..13d2c77 100644 --- a/src/gui/gui.pro +++ b/src/gui/gui.pro @@ -99,7 +99,7 @@ neon:*-g++* { contains(QMAKE_MAC_XARCH, no) { DEFINES += QT_NO_MAC_XARCH } else { - win32-g++*|!win32:!*-icc* { + win32-g++*|!win32:!win32-icc*:!macx-icc* { mmx { mmx_compiler.commands = $$QMAKE_CXX -c -Winline |