Disabled preferred stack boundary on x86_64in GSdx.

This commit is contained in:
Ryan Houdek 2014-07-15 18:18:59 -05:00
parent 80b22ca2be
commit 616500b8f3
1 changed files with 7 additions and 7 deletions

View File

@ -3,7 +3,7 @@ if(NOT TOP_CMAKE_WAS_SOURCED)
message(FATAL_ERROR "
You did not 'cmake' the good CMakeLists.txt file. Use the one in the top dir.
It is advice to delete all wrongly generated cmake stuff => CMakeFiles & CMakeCache.txt")
endif(NOT TOP_CMAKE_WAS_SOURCED)
endif()
# plugin name
@ -27,28 +27,28 @@ set(OptimizationFlags
)
#Clang doesn't support a few common flags that GCC does.
if(NOT USE_CLANG)
if(NOT USE_CLANG AND _M_X86_32)
add_definitions(${CommonFlags} -mpreferred-stack-boundary=2)
endif(NOT USE_CLANG)
endif()
# Debug - Build
if(CMAKE_BUILD_TYPE STREQUAL Debug)
add_definitions(${CommonFlags} -D_DEBUG -g -Wall)
endif(CMAKE_BUILD_TYPE STREQUAL Debug)
endif()
# Devel - Build
if(CMAKE_BUILD_TYPE STREQUAL Devel)
add_definitions(${CommonFlags} ${OptimizationFlags} -D_DEVEL -g)
endif(CMAKE_BUILD_TYPE STREQUAL Devel)
endif()
# Release - Build
if(CMAKE_BUILD_TYPE STREQUAL Release)
add_definitions(${CommonFlags} ${OptimizationFlags} -W)
endif(CMAKE_BUILD_TYPE STREQUAL Release)
endif()
if(XDG_STD)
add_definitions(-DXDG_STD)
endif(XDG_STD)
endif()
if(GLES_API AND GLESV2_FOUND)
add_definitions(-DENABLE_GLES)