brintos

brintos / llvm-project-archived public Read only

0
0
Text · 501 B · 72a7879 Raw
34 lines · plain
1# These utilities are GPU only.2if(NOT LIBC_TARGET_OS_IS_GPU)3  return()4endif()5 6add_header_library(7  utils8  HDRS9    utils.h10)11 12add_header_library(13  fixedstack14  HDRS15    fixedstack.h16)17 18add_object_library(19  allocator20  SRCS21    allocator.cpp22  HDRS23    allocator.h24  DEPENDS25    libc.hdr.stdint_proxy26    libc.src.__support.common27    libc.src.__support.RPC.rpc_client28    libc.src.__support.CPP.atomic29    libc.src.__support.CPP.bit30    libc.src.__support.CPP.new31    .utils32    .fixedstack33)34