brintos

brintos / llvm-project-archived public Read only

0
0
Text · 595 B · 2a61f82 Raw
27 lines · plain
1add_startup_object(2  tls3  SRC4    tls.cpp5  DEPENDS6    libc.config.app_h7    libc.include.sys_mman8    libc.include.sys_syscall9    libc.src.__support.OSUtil.osutil10    libc.src.string.memory_utils.inline_memcpy11  COMPILE_OPTIONS12    -fno-omit-frame-pointer13    -ffreestanding # To avoid compiler warnings about calling the main function.14)15 16add_startup_object(17  start18  SRC19    start.cpp20  DEPENDS21    libc.config.app_h22    libc.src.__support.macros.attributes23  COMPILE_OPTIONS24    -fno-omit-frame-pointer25    -ffreestanding # To avoid compiler warnings about calling the main function.26)27