diff options
| author | Hans Wennborg <hans@hanshq.net> | 2015-02-03 22:08:20 +0000 |
|---|---|---|
| committer | Hans Wennborg <hans@hanshq.net> | 2015-02-03 22:08:20 +0000 |
| commit | 6d12f69363da80929e5fa5f07acca6656bc674c9 (patch) | |
| tree | dc03d0a5fd953e858035e5c1a4286f47270685e3 /llvm/cmake/modules/AddLLVM.cmake | |
| parent | 1f4448ad51607d11991e48f3d3804542520493d1 (diff) | |
| download | bcm5719-llvm-6d12f69363da80929e5fa5f07acca6656bc674c9.tar.gz bcm5719-llvm-6d12f69363da80929e5fa5f07acca6656bc674c9.zip | |
[CMake] add_llvm_library: don't use .imp suffix for import libraries on Windows (PR22334)
This was added in r188351 to fix a naming conflict between the
profile_rt-static and profile_rt-shared who both ended up in
lib/profile_rt.lib.
The change also affected other libraries (like libclang), and
users are reporting that they find it surprising that there's
no longer a libclang.lib. Since the profile_rt naming conflict
doesn't seem to exist any more, I think we can remove this.
Differential Revision: http://reviews.llvm.org/D7391
llvm-svn: 228049
Diffstat (limited to 'llvm/cmake/modules/AddLLVM.cmake')
| -rw-r--r-- | llvm/cmake/modules/AddLLVM.cmake | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/llvm/cmake/modules/AddLLVM.cmake b/llvm/cmake/modules/AddLLVM.cmake index ee55c52df6e..dae8e758c7c 100644 --- a/llvm/cmake/modules/AddLLVM.cmake +++ b/llvm/cmake/modules/AddLLVM.cmake @@ -334,11 +334,6 @@ function(llvm_add_library name) PREFIX "" ) endif() - if (MSVC) - set_target_properties(${name} - PROPERTIES - IMPORT_SUFFIX ".imp") - endif () endif() if(ARG_MODULE OR ARG_SHARED) |

