[libc-commits] [libc] [libc] Include startup code when installing all (PR #105203)

Michael Jones via libc-commits libc-commits at lists.llvm.org
Tue Aug 20 11:16:04 PDT 2024


https://github.com/michaelrj-google created https://github.com/llvm/llvm-project/pull/105203

Previously the libc startup code was marked `EXCLUDE_FROM_ALL` due to
build issues. This patch removes that as no longer necessary.


>From a984d9fd9970372c5f549c457dabbef919656efd Mon Sep 17 00:00:00 2001
From: Michael Jones <michaelrj at google.com>
Date: Tue, 20 Aug 2024 11:13:57 -0700
Subject: [PATCH] [libc] Include startup code when installing all

Previously the libc startup code was marked `EXCLUDE_FROM_ALL` due to
build issues. This patch removes that as no longer necessary.
---
 libc/startup/linux/CMakeLists.txt | 1 -
 1 file changed, 1 deletion(-)

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