aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorthegeorg <thegeorg@yandex-team.com>2024-03-13 18:04:53 +0300
committerthegeorg <thegeorg@yandex-team.com>2024-03-13 18:28:07 +0300
commit6af8117782e4b1b97660363d80b1031a69e53d2e (patch)
tree4ecca64d0eeadc0c5fe57aaeb303f6bdf71ebd72
parentcb7eea4b6cb1664c7dc5acce263618cd64acba7b (diff)
downloadydb-6af8117782e4b1b97660363d80b1031a69e53d2e.tar.gz
Allow using intrinsic in debug windows builds
67ddc960bec51d50d2e3b0275baaef09b19f4c3a
-rw-r--r--build/conf/compilers/msvc_compiler.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/conf/compilers/msvc_compiler.conf b/build/conf/compilers/msvc_compiler.conf
index 297f206921..7eacd84c91 100644
--- a/build/conf/compilers/msvc_compiler.conf
+++ b/build/conf/compilers/msvc_compiler.conf
@@ -34,8 +34,8 @@ otherwise {
_FLAGS_DEBUG_RUNTIME=/MTd
_FLAGS_RELEASE_RUNTIME=/MT
}
-CFLAGS_DEBUG = /Od /Ob0 /Oi- /D_DEBUG $_FLAGS_DEBUG_RUNTIME
-CFLAGS_RELEASE = /O2 /Ob2 /Oi /DNDEBUG $_FLAGS_RELEASE_RUNTIME
+CFLAGS_DEBUG = /Od /Ob0 /Oi /D_DEBUG $_FLAGS_DEBUG_RUNTIME
+CFLAGS_RELEASE = /O2 /Ob2 /Oi /DNDEBUG $_FLAGS_RELEASE_RUNTIME
MASMFLAGS=
_MASM_IO=/nologo /c /Fo${output;suf=${OBJECT_SUF}:SRC} ${input;msvs_source:SRC}