diff options
author | snermolaev <snermolaev@yandex-team.com> | 2023-09-28 06:03:12 +0300 |
---|---|---|
committer | snermolaev <snermolaev@yandex-team.com> | 2023-09-28 06:22:29 +0300 |
commit | 8767afd0cea28530e598f4a11ca1c88ca89482c7 (patch) | |
tree | 2da2e6a5c079447eac90da5f88e251fa3b0e4a75 /build | |
parent | 3dc3eef69dc850828fcb3e2874cbd6673c7b5cf6 (diff) | |
download | ydb-8767afd0cea28530e598f4a11ca1c88ca89482c7.tar.gz |
fix blinking uids for use of CLANG_EMIT_AST_CXX_RUN_TOOL in multimodules PY23_LIBRARY
Diffstat (limited to 'build')
-rw-r--r-- | build/conf/python.conf | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/build/conf/python.conf b/build/conf/python.conf index f358d4896be..9a51ea9c167 100644 --- a/build/conf/python.conf +++ b/build/conf/python.conf @@ -950,11 +950,6 @@ multimodule PY23_LIBRARY { OBJ_SUF=.py2 } module PY3: PY3_LIBRARY { - # Use of CLANG_EMIT_AST_CXX_RUN_TOOL in both submodules of PY23_LIBRARY leads to UID blinking - # (clash of outputs for for commands from different submodules). Due to the order of submodules - # processing (alphabetical order) we have to ignore CLANG_EMIT_AST_CXX_RUN_TOOL in all submodules - # other than in the first one. - .IGNORED=CLANG_EMIT_AST_CXX_RUN_TOOL .RESTRICTED=RUN_ANTLR4_PYTHON RUN_CYTHON_SCRIPT_H=$YMAKE_PYTHON $CYTHON_SCRIPT OBJ_SUF=.py3 @@ -984,11 +979,6 @@ multimodule PY23_NATIVE_LIBRARY { SET(MODULE_LANG PY2) } module PY3: LIBRARY { - # Use of CLANG_EMIT_AST_CXX_RUN_TOOL in both submodules of PY23_NATIVE_LIBRARY leads to UID blinking - # (clash of outputs for for commands from different submodules). Due to the order of submodules - # processing (alphabetical order) we have to ignore CLANG_EMIT_AST_CXX_RUN_TOOL in all submodules - # other than in the first one. - .IGNORED=CLANG_EMIT_AST_CXX_RUN_TOOL .RESTRICTED=PY_SRCS USE_PYTHON2 USE_PYTHON3 RUN_ANTLR4_PYTHON .ALIASES=PYTHON2_ADDINCL=PYTHON3_ADDINCL .SEM=CPP_LIBRARY_SEM @@ -1017,11 +1007,6 @@ multimodule PY23_TEST { SET_APPEND(_MAKEFILE_INCLUDE_LIKE_DEPS canondata/py2test/result.json) } module PY3TEST_PROGRAM: PY3TEST_BIN { - # Use of CLANG_EMIT_AST_CXX_RUN_TOOL in both submodules of PY23_TEST leads to UID blinking - # (clash of outputs for for commands from different submodules). Due to the order of submodules - # processing (alphabetical order) we have to ignore CLANG_EMIT_AST_CXX_RUN_TOOL in all submodules - # other than in the first one. - .IGNORED=CLANG_EMIT_AST_CXX_RUN_TOOL .FINAL_TARGET=yes .RESTRICTED=RUN_ANTLR4_PYTHON OBJ_SUF=.py3 |