[libc-commits] [libc] ebcc6db - [libc] Don't install the GPU startup code for now

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Tue Mar 21 19:01:36 PDT 2023


Author: Joseph Huber
Date: 2023-03-21T21:01:27-05:00
New Revision: ebcc6dba5f0815877322256095b400b31adac5f4

URL: https://github.com/llvm/llvm-project/commit/ebcc6dba5f0815877322256095b400b31adac5f4
DIFF: https://github.com/llvm/llvm-project/commit/ebcc6dba5f0815877322256095b400b31adac5f4.diff

LOG: [libc] Don't install the GPU startup code for now

Summary:
This startup code is only intended to be used internally, we shouldn't
export it under a conflicting name. In the future we may package this in
an exportable format.

Added: 
    

Modified: 
    libc/startup/gpu/CMakeLists.txt

Removed: 
    


################################################################################
diff  --git a/libc/startup/gpu/CMakeLists.txt b/libc/startup/gpu/CMakeLists.txt
index 33afe1ef3f836..7bd5f9e568a1e 100644
--- a/libc/startup/gpu/CMakeLists.txt
+++ b/libc/startup/gpu/CMakeLists.txt
@@ -56,8 +56,4 @@ set(startup_components crt1)
 foreach(target IN LISTS startup_components)
   set(fq_target_name libc.startup.gpu.${target})
   add_dependencies(libc-startup ${fq_target_name})
-  install(FILES $<TARGET_OBJECTS:${fq_target_name}>
-          DESTINATION ${CMAKE_INSTALL_LIBDIR}
-          RENAME $<TARGET_PROPERTY:${fq_target_name},OUTPUT_NAME>
-          COMPONENT libc)
 endforeach()


        


More information about the libc-commits mailing list