diff options
author | spreis <spreis@yandex-team.com> | 2023-11-09 07:20:04 +0300 |
---|---|---|
committer | spreis <spreis@yandex-team.com> | 2023-11-09 07:40:58 +0300 |
commit | 619fb79db12aac56977b94af038788bbe48a9aab (patch) | |
tree | 03cb5f09a85cac2a9a5bd03d2dcc7c6f9f6693b7 /build/ymake.core.conf | |
parent | 8696eb789fdb6eeb08bc9138d5747545c98f198d (diff) | |
download | ydb-619fb79db12aac56977b94af038788bbe48a9aab.tar.gz |
Add NO_PROFILE_RUNTIME macros
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r-- | build/ymake.core.conf | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 45c3cb2b08..533e1e795c 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -4122,11 +4122,18 @@ macro NO_CLANG_COVERAGE() { DISABLE(CLANG_COVERAGE) } +# tag:coverage +### @usage: NO_PROFILE_RUNTIME() +### +### Never link this target with profile runtime. Only should be used for very basic build tools +macro NO_PROFILE_RUNTIME() { + DISABLE(NEED_PROFILE_RUNTIME) +} + macro NO_CLANG_TIDY() { DISABLE(TIDY_ENABLED) } - # tag:lua-specific LUAJIT_PATH=${ARCADIA_ROOT}/contrib/libs/luajit macro _LUAJIT_OBJDUMP(Src, OUT="") { |