mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
[MinGW] Use lib prefix for libraries
In MinGW world, UNIX like lib prefix is preferred for the libraries. This patch adjusts CMake files to do that. Differential Revision: https://reviews.llvm.org/D87517
This commit is contained in:
parent
c6a7e261b5
commit
8e6bb7d616
@ -567,7 +567,7 @@ function(llvm_add_library name)
|
||||
endif()
|
||||
|
||||
if(ARG_SHARED)
|
||||
if(WIN32)
|
||||
if(MSVC)
|
||||
set_target_properties(${name} PROPERTIES
|
||||
PREFIX ""
|
||||
)
|
||||
|
@ -381,6 +381,7 @@ int main(int argc, char **argv) {
|
||||
SharedExt = "dll";
|
||||
SharedVersionedExt = LLVM_DYLIB_VERSION ".dll";
|
||||
if (HostTriple.isOSCygMing()) {
|
||||
SharedPrefix = "lib";
|
||||
StaticExt = "a";
|
||||
StaticPrefix = "lib";
|
||||
} else {
|
||||
|
Loading…
Reference in New Issue
Block a user