mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[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
This commit is contained in:
parent
352dc10d81
commit
a7beb59f71
@ -334,11 +334,6 @@ function(llvm_add_library name)
|
|||||||
PREFIX ""
|
PREFIX ""
|
||||||
)
|
)
|
||||||
endif()
|
endif()
|
||||||
if (MSVC)
|
|
||||||
set_target_properties(${name}
|
|
||||||
PROPERTIES
|
|
||||||
IMPORT_SUFFIX ".imp")
|
|
||||||
endif ()
|
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
if(ARG_MODULE OR ARG_SHARED)
|
if(ARG_MODULE OR ARG_SHARED)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user