aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/lfalloc/dbg/ya.make
blob: bc14ae2aa605810765eebd6a06ff39ca65ab8ef1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
LIBRARY()


ALLOCATOR_IMPL()
NO_UTIL()

NO_COMPILER_WARNINGS()

IF (ARCH_AARCH64)
    PEERDIR(
        contrib/libs/jemalloc
    )
ELSE()
    IF ("${YMAKE}" MATCHES "devtools")
        CFLAGS(-DYMAKE=1)
    ENDIF()
    CXXFLAGS(
        -DLFALLOC_DBG
        -DLFALLOC_YT
    )
    SRCS(
        ../lf_allocX64.cpp
    )
ENDIF()

PEERDIR(
    library/cpp/malloc/api
)

SET(IDE_FOLDER "util")

END()