We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9069c38 + 86b8dbe commit ce5811cCopy full SHA for ce5811c
compat/vcbuild/scripts/clink.pl
@@ -54,7 +54,8 @@
54
# need to use that instead?
55
foreach my $flag (@lflags) {
56
if ($flag =~ /^-LIBPATH:(.*)/) {
57
- foreach my $l ("libcurl_imp.lib", "libcurl.lib") {
+ my $libcurl = $is_debug ? "libcurl-d.lib" : "libcurl.lib";
58
+ foreach my $l ("libcurl_imp.lib", $libcurl) {
59
if (-f "$1/$l") {
60
$lib = $l;
61
last;
0 commit comments