[libc-commits] [libc] 06c8602 - [libc] Remove unused startup source file

Joseph Huber via libc-commits libc-commits at lists.llvm.org
Thu Mar 16 10:42:31 PDT 2023


Author: Joseph Huber
Date: 2023-03-16T12:41:52-05:00
New Revision: 06c86025268c41e9418fd3df4e9b7427706d9e22

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

LOG: [libc] Remove unused startup source file

Summary:
This was not removed from the previous patch. Fix that.

Added: 
    

Modified: 
    libc/cmake/modules/LLVMLibCTestRules.cmake

Removed: 
    


################################################################################
diff  --git a/libc/cmake/modules/LLVMLibCTestRules.cmake b/libc/cmake/modules/LLVMLibCTestRules.cmake
index 19a0c3bd03b6..bf862b743c8a 100644
--- a/libc/cmake/modules/LLVMLibCTestRules.cmake
+++ b/libc/cmake/modules/LLVMLibCTestRules.cmake
@@ -497,8 +497,7 @@ function(add_integration_test test_name)
   target_compile_options(${fq_build_target_name}
                          PRIVATE -fpie -ffreestanding ${INTEGRATION_TEST_COMPILE_OPTIONS})
   target_link_options(${fq_build_target_name} PRIVATE -nostdlib -static)
-  target_link_libraries(${fq_build_target_name}
-                        ${INTEGRATION_TEST_STARTUP} ${fq_target_name}.__libc__
+  target_link_libraries(${fq_build_target_name} ${fq_target_name}.__libc__
                         libc.test.IntegrationTest.test)
   add_dependencies(${fq_build_target_name}
                    libc.test.IntegrationTest.test


        


More information about the libc-commits mailing list