mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 12:06:08 +00:00
17 lines
519 B
CMake
17 lines
519 B
CMake
function(add_example name)
|
|
add_executable(
|
|
${name}
|
|
${ARGN}
|
|
)
|
|
|
|
if(LLVM_LIBC_FULL_BUILD)
|
|
target_link_options(${name} PRIVATE -static -rtlib=compiler-rt -fuse-ld=lld)
|
|
elseif(LIBC_OVERLAY_ARCHIVE_DIR)
|
|
target_link_directories(${name} PRIVATE ${LIBC_OVERLAY_ARCHIVE_DIR})
|
|
target_link_options(${name} PRIVATE -l:libllvmlibc.a)
|
|
else()
|
|
message(FATAL_ERROR "Either LLVM_LIBC_FULL_BUILD should be on or "
|
|
"LIBC_OVERLAY_ARCHIVE_DIR should be set.")
|
|
endif()
|
|
endfunction()
|