Hello
Now I have compiler cals like this:
g++ -c -pipe -g -frtti -fexceptions -mthreads -Wall -Wextra -DUNICODE -DQT_LARGEFILE_SUPPORT -DDEBUG -DDEBUGNOCOMPILE -DQT_DLL -DQT_WEBKIT_LIB -DQT_GUI_LIB -DQT_CORE_LIB -DQT_HAVE_MMX -DQT_HAVE_3DNOW -DQT_HAVE_SSE -DQT_HAVE_MMXEXT -DQT_HAVE_SSE2 -DQT_THREAD_SUPPORT -DQT_NEEDS_QMAIN -I"..\..\x-unix\Qt4.8.4\include\QtCore" -I"..\..\x-unix\Qt4.8.4\include\QtGui" -I"..\..\x-unix\Qt4.8.4\include\QtWebKit" -I"..\..\x-unix\Qt4.8.4\include" -I"..\lib\ToolsString" -I"..\lib\ToolsFile" -I"..\lib\Tools" -I"..\lib\Errors" -I"..\..\x-unix\Qt4.8.4\include\ActiveQt" -I"debug" -I"." -I"..\interdict" -I"." -I"..\..\x-unix\Qt4.8.4\mkspecs\win32-g++" -o debug\main.o ..\interdict\main.cpp
And I am concern about -DQT_HAVE_SSE2 because my processor does not support such instructions. So I added to my pro file this line:
DEFINES -= QT_HAVE_SSE2
But it does not help.
So my question is: How to remove -DQT_HAVE_SSE2 compiler flag?
thanks
Jacek
Bookmarks