From ec2245158f27a04945d869cff8cdb8892d75784d Mon Sep 17 00:00:00 2001 From: Thiago Macieira Date: Fri, 30 Dec 2011 18:08:57 -0200 Subject: Remove -Winline from the build of SSE2/AVX/etc. sources MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Reviewed-by: Samuel Rødal --- src/gui/gui.pro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') 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 -- cgit v1.2.3