Fixed SSE warning in debug with GCC

Former-commit-id: 3632988311795547ccf59a66606b3faccff1a1b1
This commit is contained in:
Lynix 2012-11-22 01:15:58 +01:00
parent e6655ef420
commit e3316c4e10
1 changed files with 7 additions and 7 deletions

View File

@ -35,6 +35,10 @@ configuration "Debug*"
configuration "Release*" configuration "Release*"
flags { "EnableSSE", "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" } flags { "EnableSSE", "EnableSSE2", "Optimize", "OptimizeSpeed", "NoFramePointer", "NoRTTI" }
-- Activation du SSE côté GCC
configuration { "Release*", "codeblocks or codelite or gmake or xcode3*" }
buildoptions "-mfpmath=sse"
configuration "*Static" configuration "*Static"
defines "NAZARA_STATIC" defines "NAZARA_STATIC"
kind "StaticLib" kind "StaticLib"
@ -52,11 +56,7 @@ configuration "DebugDLL"
targetsuffix "-d" targetsuffix "-d"
configuration "codeblocks or codelite or gmake or xcode3*" configuration "codeblocks or codelite or gmake or xcode3*"
buildoptions buildoptions "-std=c++11"
{
"-mfpmath=sse",
"-std=c++11"
}
configuration { "linux or bsd or macosx", "gmake" } configuration { "linux or bsd or macosx", "gmake" }
buildoptions "-fvisibility=hidden" buildoptions "-fvisibility=hidden"