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:
@@ -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 = "\\";
|
||||
|
||||
Reference in New Issue
Block a user