brintos

brintos / llvm-project-archived public Read only

0
0
Text · 729 B · 67ab197 Raw
58 lines · plain
1add_entrypoint_object(2  abort3  SRCS4    abort.cpp5  HDRS6    ../abort.h7)8 9add_entrypoint_object(10  malloc11  SRCS12    malloc.cpp13  HDRS14    ../malloc.h15  DEPENDS16    libc.src.__support.freelist_heap17)18 19add_entrypoint_object(20  free21  SRCS22    free.cpp23  HDRS24    ../free.h25  DEPENDS26    libc.src.__support.freelist_heap27)28 29add_entrypoint_object(30  calloc31  SRCS32    calloc.cpp33  HDRS34    ../calloc.h35  DEPENDS36    libc.src.__support.freelist_heap37)38 39add_entrypoint_object(40  realloc41  SRCS42    realloc.cpp43  HDRS44    ../realloc.h45  DEPENDS46    libc.src.__support.freelist_heap47)48 49add_entrypoint_object(50  aligned_alloc51  SRCS52    aligned_alloc.cpp53  HDRS54    ../aligned_alloc.h55  DEPENDS56    libc.src.__support.freelist_heap57)58