[libc-commits] [libc] [libc] Include startup code when installing all (PR #105203)
via libc-commits
libc-commits at lists.llvm.org
Tue Aug 20 11:16:42 PDT 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-libc
Author: Michael Jones (michaelrj-google)
<details>
<summary>Changes</summary>
Previously the libc startup code was marked `EXCLUDE_FROM_ALL` due to
build issues. This patch removes that as no longer necessary.
---
Full diff: https://github.com/llvm/llvm-project/pull/105203.diff
1 Files Affected:
- (modified) libc/startup/linux/CMakeLists.txt (-1)
``````````diff
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()
``````````
</details>
https://github.com/llvm/llvm-project/pull/105203
More information about the libc-commits
mailing list