diff options
author | slizyukalex <slizyukalex@yandex-team.com> | 2025-05-29 09:06:51 +0300 |
---|---|---|
committer | slizyukalex <slizyukalex@yandex-team.com> | 2025-05-29 09:25:29 +0300 |
commit | a84b062f1ebcbed4e1c70e9b5d2924f40558a0aa (patch) | |
tree | 9d7dd7c6cea66d6c8b86ebd014dc6ef1f10ffd69 | |
parent | 1f068ce9334c3f9192a8435b1ad87863db34caff (diff) | |
download | ydb-a84b062f1ebcbed4e1c70e9b5d2924f40558a0aa.tar.gz |
Revert commit 7580a407657f44a689a1c96b4a95a2081a913893,Switch default allocator for ARM + linux to TCMALLOC
Делаю откат, т.к. сломал этим коммитом у нас все остальные сборки под arm.
commit_hash:989e8fedac3e2df12604621c62825cb7ffa6bde1
-rw-r--r-- | build/ymake.core.conf | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/build/ymake.core.conf b/build/ymake.core.conf index 672c88adc5f..c36714a94cb 100644 --- a/build/ymake.core.conf +++ b/build/ymake.core.conf @@ -368,7 +368,7 @@ macro NO_LTO() { DEFAULT_ALLOCATOR=LF # tag:allocator -when ($OS_ANDROID == "yes" || $OS_WINDOWS == "yes" || $ARCH_TYPE_32 == "yes") { +when ($OS_ANDROID == "yes" || $OS_WINDOWS == "yes" || $ARCH_TYPE_32 == "yes" || $ARCH_AARCH64 == "yes") { DEFAULT_ALLOCATOR=J } @@ -390,9 +390,6 @@ when ($OS_LINUX == "yes") { elsewhen ($ARCH_X86_64) { DEFAULT_ALLOCATOR=TCMALLOC_TC } - elsewhen ($ARCH_AARCH64) { - DEFAULT_ALLOCATOR=TCMALLOC_TC - } } # tag:allocator |