diff options
author | thegeorg <thegeorg@yandex-team.com> | 2023-07-21 12:24:53 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2023-07-21 12:24:53 +0300 |
commit | d8bf44488de42e74f19a724f685c6e9dde6a7239 (patch) | |
tree | 29a90da887beea78a5811a7f8194ad31e474e99d /build/ymake.core.conf | |
parent | 4e61cae929165ef52b951130a966f2c9ba5319bd (diff) | |
download | ydb-d8bf44488de42e74f19a724f685c6e9dde6a7239.tar.gz |
Do not use libprofile.a from sources
```
TypeError: join() argument must be str, bytes, or os.PathLike object, not 'NoneType'
Failed
```
Diffstat (limited to 'build/ymake.core.conf')
-rw-r--r-- | build/ymake.core.conf | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 32bba70d94..d3468bbbc4 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -9,7 +9,7 @@ FAKEID=314159265358 SANDBOX_FAKEID=${FAKEID}.7600000 -CPP_FAKEID=2023-07-19 +CPP_FAKEID=2023-06-06 GO_FAKEID=11100371 ANDROID_FAKEID=2023-05-17 CLANG_TIDY_FAKEID=2023-06-06 @@ -1132,14 +1132,6 @@ when ($ALLOCATOR == "LF") { SANITIZE_HEADERS=yes SANITIZER_CFLAGS= -# tag:profile -NEED_PROFILE_RUNTIME=no -when ($BUILD_TYPE == "PROFILE" || $BUILD_TYPE == "COVERAGE" || ($CLANG_COVERAGE && $CLANG_COVERAGE != "no")) { - when($CLANG && ($TARGET_PLATFORM == "LINUX" || $TARGET_PLATFORM == "DARWIN")) { - NEED_PROFILE_RUNTIME=yes - } -} - # tag:proto tag:grpc _GRPC_ENABLED=no @@ -1778,11 +1770,6 @@ module _LINK_UNIT: _BASE_UNIT { LINK_SCRIPT_EXE_FLAGS += --dynamic-cuda } - when ($NEED_PROFILE_RUNTIME && $NEED_PROFILE_RUNTIME != "no") { - LDFLAGS+=-resource-dir=contrib/libs/clang-rt - PEERDIR+=contrib/libs/clang14-rt/lib/profile - } - ENABLE(COMMON_LINK_SETTINGS) CHECK_PROVIDES() } |