aboutsummaryrefslogtreecommitdiff
path: root/libc/startup
diff options
context:
space:
mode:
authorJoseph Huber <jhuber6@vols.utk.edu>2023-03-21 21:00:46 -0500
committerJoseph Huber <jhuber6@vols.utk.edu>2023-03-21 21:01:27 -0500
commitebcc6dba5f0815877322256095b400b31adac5f4 (patch)
tree581599175b7b15ecd71dce39f10195137141787e /libc/startup
parent8e43c22d303835bf90a64f6732df4dfc028ac688 (diff)
downloadllvm-ebcc6dba5f0815877322256095b400b31adac5f4.zip
llvm-ebcc6dba5f0815877322256095b400b31adac5f4.tar.gz
llvm-ebcc6dba5f0815877322256095b400b31adac5f4.tar.bz2
[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.
Diffstat (limited to 'libc/startup')
-rw-r--r--libc/startup/gpu/CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/libc/startup/gpu/CMakeLists.txt b/libc/startup/gpu/CMakeLists.txt
index 33afe1e..7bd5f9e5 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()