- Disabled compiler intrinsics for the VS non SSE2 version, it should work now.

This commit is contained in:
drfrag666 2018-06-22 11:12:11 +02:00
parent abb2f6fd32
commit af4093fe94

View file

@ -422,7 +422,7 @@ endif()
if ( NOT TC_USE_SSE2 ) if ( NOT TC_USE_SSE2 )
add_definitions( -DNO_SSE ) add_definitions( -DNO_SSE )
if ( MSVC ) if ( MSVC )
set (CMAKE_CXX_FLAGS "/arch:IA32 ${CMAKE_CXX_FLAGS}") set (CMAKE_CXX_FLAGS "/arch:IA32 /Oi- ${CMAKE_CXX_FLAGS}")
endif() endif()
endif() endif()