summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThiago Macieira <thiago.macieira@intel.com>2011-12-30 18:08:57 -0200
committerQt by Nokia <qt-info@nokia.com>2012-05-22 20:56:38 +0200
commitec2245158f27a04945d869cff8cdb8892d75784d (patch)
treefddb959a1fceafeef7bb16bef2f5a4818f472a33 /src
parent6499701bd6c4eaedd40d079adb45c6642ff5cca0 (diff)
Remove -Winline from the build of SSE2/AVX/etc. sources
If anything, those are development flags. Normal users of Qt should not be bothered by the lengthy output this flag produces Change-Id: Iaa629d3f01ddc88e0775f62ffbb96fa734e3247f Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@nokia.com> Reviewed-by: Samuel Rødal <samuel.rodal@nokia.com>
Diffstat (limited to 'src')
-rw-r--r--src/gui/gui.pro8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/gui.pro b/src/gui/gui.pro
index 839f211ad6..67c21338ad 100644
--- a/src/gui/gui.pro
+++ b/src/gui/gui.pro
@@ -61,7 +61,7 @@ win32:!contains(QT_CONFIG, directwrite) {
win32-g++*|!win32:!win32-icc*:!macx-icc* {
sse2 {
- sse2_compiler.commands = $$QMAKE_CXX -c -Winline $(CXXFLAGS)
+ sse2_compiler.commands = $$QMAKE_CXX -c $(CXXFLAGS)
sse2_compiler.commands += -msse2
sse2_compiler.commands += $(INCPATH) ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
sse2_compiler.dependency_type = TYPE_C
@@ -73,7 +73,7 @@ win32:!contains(QT_CONFIG, directwrite) {
QMAKE_EXTRA_COMPILERS += sse2_compiler
}
ssse3 {
- ssse3_compiler.commands = $$QMAKE_CXX -c -Winline $(CXXFLAGS)
+ ssse3_compiler.commands = $$QMAKE_CXX -c $(CXXFLAGS)
ssse3_compiler.commands += -mssse3
ssse3_compiler.commands += $(INCPATH) ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
ssse3_compiler.dependency_type = TYPE_C
@@ -85,7 +85,7 @@ win32:!contains(QT_CONFIG, directwrite) {
QMAKE_EXTRA_COMPILERS += ssse3_compiler
}
avx {
- avx_compiler.commands = $$QMAKE_CXX -c -Winline $(CXXFLAGS)
+ avx_compiler.commands = $$QMAKE_CXX -c $(CXXFLAGS)
avx_compiler.commands += -mavx
avx_compiler.commands += $(INCPATH) ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
avx_compiler.dependency_type = TYPE_C
@@ -97,7 +97,7 @@ win32:!contains(QT_CONFIG, directwrite) {
QMAKE_EXTRA_COMPILERS += avx_compiler
}
iwmmxt {
- iwmmxt_compiler.commands = $$QMAKE_CXX -c -Winline $(CXXFLAGS)
+ iwmmxt_compiler.commands = $$QMAKE_CXX -c $(CXXFLAGS)
iwmmxt_compiler.commands += -mcpu=iwmmxt
iwmmxt_compiler.commands += $(INCPATH) ${QMAKE_FILE_IN} -o ${QMAKE_FILE_OUT}
iwmmxt_compiler.dependency_type = TYPE_C