diff options
Diffstat (limited to 'library/cpp/lfalloc/ya.make')
-rw-r--r-- | library/cpp/lfalloc/ya.make | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/library/cpp/lfalloc/ya.make b/library/cpp/lfalloc/ya.make new file mode 100644 index 0000000000..cace05f9d8 --- /dev/null +++ b/library/cpp/lfalloc/ya.make @@ -0,0 +1,25 @@ +LIBRARY() + +OWNER(gulin) + +NO_UTIL() + +NO_COMPILER_WARNINGS() + +IF (ARCH_AARCH64) + PEERDIR( + contrib/libs/jemalloc + ) +ELSE() + SRCS( + lf_allocX64.cpp + ) +ENDIF() + +PEERDIR( + library/cpp/malloc/api +) + +SET(IDE_FOLDER "util") + +END() |