[libc-commits] [libc] 2353f48 - [libc] Include startup code when installing all (#105203)
via libc-commits
libc-commits at lists.llvm.org
Tue Aug 20 13:54:12 PDT 2024
Author: Michael Jones
Date: 2024-08-20T13:54:09-07:00
New Revision: 2353f484a51b9aab992402400010bbb450fea1b2
URL: https://github.com/llvm/llvm-project/commit/2353f484a51b9aab992402400010bbb450fea1b2
DIFF: https://github.com/llvm/llvm-project/commit/2353f484a51b9aab992402400010bbb450fea1b2.diff
LOG: [libc] Include startup code when installing all (#105203)
Previously the libc startup code was marked `EXCLUDE_FROM_ALL` due to
build issues. This patch removes that as no longer necessary.
Added:
Modified:
libc/startup/linux/CMakeLists.txt
Removed:
################################################################################
diff --git a/libc/startup/linux/CMakeLists.txt b/libc/startup/linux/CMakeLists.txt
index 71f187ca05f29f..eaa724e41f1685 100644
--- a/libc/startup/linux/CMakeLists.txt
+++ b/libc/startup/linux/CMakeLists.txt
@@ -138,6 +138,5 @@ foreach(target IN LISTS startup_components)
install(FILES $<TARGET_OBJECTS:${fq_target_name}>
DESTINATION ${LIBC_INSTALL_LIBRARY_DIR}
RENAME $<TARGET_PROPERTY:${fq_target_name},OUTPUT_NAME>
- EXCLUDE_FROM_ALL
COMPONENT libc)
endforeach()
More information about the libc-commits
mailing list