Make test more lenient for custom clang version strings
[llvm-project.git] / libc / src / stdlib / gpu / CMakeLists.txt
blob3c0588a27e7e0f81a62acbb5e8d5ff7b6b857478
1 add_entrypoint_object(
2   malloc
3   SRCS
4     malloc.cpp
5   HDRS
6     ../malloc.h
7   DEPENDS
8     libc.include.stdlib
9     libc.src.__support.GPU.allocator
12 add_entrypoint_object(
13   free
14   SRCS
15     free.cpp
16   HDRS
17     ../free.h
18   DEPENDS
19     libc.include.stdlib
20     libc.src.__support.RPC.rpc_client
23 add_entrypoint_object(
24   realloc
25   SRCS
26     realloc.cpp
27   HDRS
28     ../realloc.h
29   DEPENDS
30     libc.include.stdlib
31     libc.src.__support.GPU.allocator
34 add_entrypoint_object(
35   calloc
36   SRCS
37     calloc.cpp
38   HDRS
39     ../calloc.h
40   DEPENDS
41     libc.include.stdlib
42     libc.src.__support.GPU.allocator
45 add_entrypoint_object(
46   aligned_alloc
47   SRCS
48     aligned_alloc.cpp
49   HDRS
50     ../aligned_alloc.h
51   DEPENDS
52     libc.include.stdlib
53     libc.src.__support.GPU.allocator
56 add_entrypoint_object(
57   abort
58   SRCS
59     abort.cpp
60   HDRS
61     ../abort.h
62   DEPENDS
63     libc.include.stdlib
64     libc.src.__support.RPC.rpc_client
67 add_entrypoint_object(
68   system
69   SRCS
70     system.cpp
71   HDRS
72     ../system.h
73   DEPENDS
74     libc.include.stdlib
75     libc.src.__support.RPC.rpc_client