aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authoriaz1607 <iaz1607@yandex-team.com>2023-09-13 14:01:22 +0300
committeriaz1607 <iaz1607@yandex-team.com>2023-09-13 14:28:39 +0300
commitfa58c4134ae46c30ff768ca14ded2b19a4cc1709 (patch)
tree6f9e189536f97ebbda9adbcd47d073995c78f552 /build
parent26909c0b38a12c22009c1d9c44c1977ccfa6392a (diff)
downloadydb-fa58c4134ae46c30ff768ca14ded2b19a4cc1709.tar.gz
Fix fastdebug strip
Diffstat (limited to 'build')
-rw-r--r--build/conf/python.conf4
1 files changed, 2 insertions, 2 deletions
diff --git a/build/conf/python.conf b/build/conf/python.conf
index 7582a762738..9a78fada468 100644
--- a/build/conf/python.conf
+++ b/build/conf/python.conf
@@ -604,7 +604,7 @@ module _BASE_PY_PROGRAM: _BASE_PROGRAM {
ALLOCATOR($_MY_ALLOCATOR)
STRIP()
- when ($BUILD_TYPE == "DEBUG") {
+ when ($BUILD_TYPE == "DEBUG" || $BUILD_TYPE == "FASTDEBUG") {
NO_STRIP=yes
}
when ($SANITIZER_TYPE && $SANITIZER_TYPE != "no") {
@@ -660,7 +660,7 @@ module _BASE_PY3_PROGRAM: _BASE_PROGRAM {
when ($NO_PYTHON_INCLS != "yes") {
PEERDIR+=contrib/libs/python
}
- when ($BUILD_TYPE == "DEBUG") {
+ when ($BUILD_TYPE == "DEBUG" || $BUILD_TYPE == "FASTDEBUG") {
NO_STRIP=yes
}
when ($SANITIZER_TYPE && $SANITIZER_TYPE != "no") {