brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.0 KiB · 3c0588a Raw
77 lines · plain
1add_entrypoint_object(2  malloc3  SRCS4    malloc.cpp5  HDRS6    ../malloc.h7  DEPENDS8    libc.include.stdlib9    libc.src.__support.GPU.allocator10)11 12add_entrypoint_object(13  free14  SRCS15    free.cpp16  HDRS17    ../free.h18  DEPENDS19    libc.include.stdlib20    libc.src.__support.RPC.rpc_client21)22 23add_entrypoint_object(24  realloc25  SRCS26    realloc.cpp27  HDRS28    ../realloc.h29  DEPENDS30    libc.include.stdlib31    libc.src.__support.GPU.allocator32)33 34add_entrypoint_object(35  calloc36  SRCS37    calloc.cpp38  HDRS39    ../calloc.h40  DEPENDS41    libc.include.stdlib42    libc.src.__support.GPU.allocator43)44 45add_entrypoint_object(46  aligned_alloc47  SRCS48    aligned_alloc.cpp49  HDRS50    ../aligned_alloc.h51  DEPENDS52    libc.include.stdlib53    libc.src.__support.GPU.allocator54)55 56add_entrypoint_object(57  abort58  SRCS59    abort.cpp60  HDRS61    ../abort.h62  DEPENDS63    libc.include.stdlib64    libc.src.__support.RPC.rpc_client65)66 67add_entrypoint_object(68  system69  SRCS70    system.cpp71  HDRS72    ../system.h73  DEPENDS74    libc.include.stdlib75    libc.src.__support.RPC.rpc_client76)77