Remove -Winline from the build of SSE2/AVX/etc. sources
authorThiago Macieira <thiago.macieira@intel.com>
Fri, 30 Dec 2011 20:08:57 +0000 (18:08 -0200)
committerQt by Nokia <qt-info@nokia.com>
Tue, 22 May 2012 18:56:38 +0000 (20:56 +0200)
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>
src/gui/gui.pro

index 839f211..67c2133 100644 (file)
@@ -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