llvm-config: Fix DLL prefix on cygming.

For example, LLVMSupport takes the form of LLVMSupport.dll, not libLLVMSupport.dll.

llvm-svn: 260351
This commit is contained in:
NAKAMURA Takumi
2016-02-10 03:09:13 +00:00
parent 7590a1ee61
commit 1621f81c44

View File

@@ -358,7 +358,7 @@ int main(int argc, char **argv) {
SharedVersionedExt = LLVM_DYLIB_VERSION ".dll";
if (HostTriple.isOSCygMing()) {
StaticExt = "a";
StaticPrefix = SharedPrefix = "lib";
StaticPrefix = "lib";
} else {
StaticExt = "lib";
DirSep = "\\";