brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1011 B · c70ab95 Raw
74 lines · plain
1if(EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})2  add_subdirectory(${CMAKE_CURRENT_SOURCE_DIR}/${LIBC_TARGET_OS})3endif()4 5add_entrypoint_object(6  raise7  ALIAS8  DEPENDS9    .${LIBC_TARGET_OS}.raise10)11 12add_entrypoint_object(13  kill14  ALIAS15  DEPENDS16    .${LIBC_TARGET_OS}.kill17)18 19add_entrypoint_object(20  sigaction21  ALIAS22  DEPENDS23    .${LIBC_TARGET_OS}.sigaction24)25 26add_entrypoint_object(27  sigaltstack28  ALIAS29  DEPENDS30    .${LIBC_TARGET_OS}.sigaltstack31)32 33add_entrypoint_object(34  sigprocmask35  ALIAS36  DEPENDS37    .${LIBC_TARGET_OS}.sigprocmask38)39 40add_entrypoint_object(41  sigemptyset42  ALIAS43  DEPENDS44    .${LIBC_TARGET_OS}.sigemptyset45)46 47add_entrypoint_object(48  sigaddset49  ALIAS50  DEPENDS51    .${LIBC_TARGET_OS}.sigaddset52)53 54add_entrypoint_object(55  signal56  ALIAS57  DEPENDS58    .${LIBC_TARGET_OS}.signal59)60 61add_entrypoint_object(62  sigfillset63  ALIAS64  DEPENDS65    .${LIBC_TARGET_OS}.sigfillset66)67 68add_entrypoint_object(69  sigdelset70  ALIAS71  DEPENDS72    .${LIBC_TARGET_OS}.sigdelset73)74