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 d702838 + 28f9097 commit 593d091Copy full SHA for 593d091
compat/vcbuild/scripts/clink.pl
@@ -56,7 +56,8 @@
56
# need to use that instead?
57
foreach my $flag (@lflags) {
58
if ($flag =~ /^-LIBPATH:(.*)/) {
59
- foreach my $l ("libcurl_imp.lib", "libcurl.lib") {
+ my $libcurl = $is_debug ? "libcurl-d.lib" : "libcurl.lib";
60
+ foreach my $l ("libcurl_imp.lib", $libcurl) {
61
if (-f "$1/$l") {
62
$lib = $l;
63
last;
0 commit comments