diff options
Diffstat (limited to 'llvm')
-rw-r--r-- | llvm/cmake/modules/HandleLLVMOptions.cmake | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/llvm/cmake/modules/HandleLLVMOptions.cmake b/llvm/cmake/modules/HandleLLVMOptions.cmake index 676f1569cfe..3c8bdaf0996 100644 --- a/llvm/cmake/modules/HandleLLVMOptions.cmake +++ b/llvm/cmake/modules/HandleLLVMOptions.cmake @@ -48,14 +48,6 @@ elseif(LLVM_PARALLEL_LINK_JOBS) message(WARNING "Job pooling is only available with Ninja generators.") endif() -if (LINKER_IS_LLD_LINK) - # Pass /MANIFEST:NO so that CMake doesn't run mt.exe on our binaries. Adding - # manifests with mt.exe breaks LLD's symbol tables and takes as much time as - # the link. See PR24476. - append("/MANIFEST:NO" - CMAKE_EXE_LINKER_FLAGS CMAKE_MODULE_LINKER_FLAGS CMAKE_SHARED_LINKER_FLAGS) -endif() - if( LLVM_ENABLE_ASSERTIONS ) # MSVC doesn't like _DEBUG on release builds. See PR 4379. if( NOT MSVC ) |