diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-08-06 16:00:14 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-08-06 16:18:53 +0300 |
commit | 62f2557217f2b1f9e00011d5b328d7ac85fa1d9e (patch) | |
tree | 791be1d4a5a6b13f2886287a7f25fada3a5d4067 /build | |
parent | 047f6fe1e8ef644674f45640bc79d3589a40f461 (diff) | |
download | ydb-62f2557217f2b1f9e00011d5b328d7ac85fa1d9e.tar.gz |
Fix BUILD_TYPE spelling
a057b08a1dd34d2365f2679e8202dc4f338a3b60
Diffstat (limited to 'build')
-rw-r--r-- | build/ymake.core.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 469b5ac0cd..535da24a33 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -4845,7 +4845,7 @@ when ($CLANG && $DEBUGINFO_LINES_ONLY == "yes" && $NO_DEBUGINFO != "yes") { # NB: Assertions under sanitizers are disabled as they cause # a couple _relocation out of range_ problems plus an # ICE when building contrib/libs/hyperscan/runtime_avx512. -when ($BUILD_TYPE == "release" || $BUILD_TYPE == "minsizerel" || $BUILD_TYPE == "valgrind-release" || $BUILD_TYPE == "profile" || $BUILD_TYPE == "gprof" || $BUILD_TYPE == "debugnoasserts" || $SANITIZER_TYPE != "") { +when ($BUILD_TYPE == "RELEASE" || $BUILD_TYPE == "MINSIZEREL" || $BUILD_TYPE == "VALGRIND-RELEASE" || $BUILD_TYPE == "PROFILE" || $BUILD_TYPE == "GPROF" || $BUILD_TYPE == "DEBUGNOASSERTS" || $SANITIZER_TYPE != "") { CFLAGS += -DNDEBUG when ($OS_WINDOWS) { # FIXME: defining _DEBUG on Linux gives more relation problems and breaks certain tests |