brintos

brintos / llvm-project-archived public Read only

0
0
Text · 455 B · 77400e9 Raw
32 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  creat7  ALIAS8  DEPENDS9    .${LIBC_TARGET_OS}.creat10)11 12add_entrypoint_object(13  fcntl14  ALIAS15  DEPENDS16    .${LIBC_TARGET_OS}.fcntl17)18 19add_entrypoint_object(20  open21  ALIAS22  DEPENDS23    .${LIBC_TARGET_OS}.open24)25 26add_entrypoint_object(27  openat28  ALIAS29  DEPENDS30    .${LIBC_TARGET_OS}.openat31)32