diff options
author | Reid Kleckner <rnk@google.com> | 2018-05-21 20:14:46 +0000 |
---|---|---|
committer | Reid Kleckner <rnk@google.com> | 2018-05-21 20:14:46 +0000 |
commit | 9b2df56c596b4929938c44e0eb3c54d89d2ba466 (patch) | |
tree | 29f2d5786171773a0e00b0ddfe9b8b3426c1c129 | |
parent | bbb2655de0049f8e6cf4482702aa616011c851c1 (diff) | |
download | bcm5719-llvm-9b2df56c596b4929938c44e0eb3c54d89d2ba466.tar.gz bcm5719-llvm-9b2df56c596b4929938c44e0eb3c54d89d2ba466.zip |
Remove CMake workaround for LLD PR24476 which is no longer needed
llvm-svn: 332880
-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 ) |