From af4093fe943524111d90c6531ab3a03724ce0809 Mon Sep 17 00:00:00 2001 From: drfrag666 Date: Fri, 22 Jun 2018 11:12:11 +0200 Subject: [PATCH] - Disabled compiler intrinsics for the VS non SSE2 version, it should work now. --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 3397f3a26..d72a32369 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -422,7 +422,7 @@ endif() if ( NOT TC_USE_SSE2 ) add_definitions( -DNO_SSE ) if ( MSVC ) - set (CMAKE_CXX_FLAGS "/arch:IA32 ${CMAKE_CXX_FLAGS}") + set (CMAKE_CXX_FLAGS "/arch:IA32 /Oi- ${CMAKE_CXX_FLAGS}") endif() endif()