brintos

brintos / llvm-project-archived public Read only

0
0
Text · 554 B · 5564f0a Raw
26 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  COMPILE_OPTIONS23    -fno-omit-frame-pointer24    -ffreestanding # To avoid compiler warnings about calling the main function.25)26