aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/libs/clang16-rt/lib/gwp_asan/ya.make
blob: 24f49509db7b87bd5b3521d0bd9b5217b6ddda9e (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Generated by devtools/yamaker.

INCLUDE(${ARCADIA_ROOT}/build/platform/clang/arch.cmake)

LIBRARY(clang_rt.gwp_asan${CLANG_RT_SUFFIX})

LICENSE(
    Apache-2.0 AND
    Apache-2.0 WITH LLVM-exception AND
    MIT AND
    NCSA
)

LICENSE_TEXTS(.yandex_meta/licenses.list.txt)

OWNER(g:cpp-contrib)

ADDINCL(
    contrib/libs/clang16-rt/lib
)

NO_COMPILER_WARNINGS()

NO_UTIL()

NO_SANITIZE()

CFLAGS(
    -fno-builtin
    -fno-exceptions
    -fno-lto
    -fno-omit-frame-pointer
    -fno-rtti
    -fno-stack-protector
    -fomit-frame-pointer
    -funwind-tables
    -fvisibility=hidden
)

SRCS(
    common.cpp
    crash_handler.cpp
    guarded_pool_allocator.cpp
    platform_specific/common_posix.cpp
    platform_specific/guarded_pool_allocator_posix.cpp
    platform_specific/mutex_posix.cpp
    platform_specific/utilities_posix.cpp
    stack_trace_compressor.cpp
)

END()