-
Notifications
You must be signed in to change notification settings - Fork 6.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[libpq] build failure #26921
Comments
Can you provide the complete log? |
@gamesyule Do you have the latest version of build tools installed on your VS? |
|
Please switch to English language pack to try it. |
Same problem. |
I've got the same problem here. It seems that libpq does not support Release|x64 |
Looking into vc project, there are only |
AFAIU the configuration of libpq runs # Examine CL help output to determine if we are in 32 or 64-bit mode.
my $output = `cl /help 2>&1`;
$? >> 8 == 0 or die "cl command not found";
if ($output =~ m/x64\n/) { $self->{platform} = 'x64';
} elsif ($output =~ m/x86\n/) { $self->{platform} = 'Win32';
} elsif ($output =~ m/ARM64\n/) { $self->{platform} = 'ARM64';
} elsif ($output =~ m/ARM\n/) { $self->{platform} = 'ARM';
} else { $self->{platform} = 'Unknown'
} So |
Does anyone know how to deal with the same problem? |
|
Solved by switching to English language pack |
Package: libpq[core,lz4,openssl,zlib]:x64-windows -> 14.4
Host Environment
vcpkg-scripts version: d52632d 2022-09-21 (12 hours ago)
To Reproduce
vcpkg install libpq:x64-windows
Failure logs
F:\develope\vcpkg\buildtrees\libpq\build-libpq-x64-windows-RELEASE-out.log
F:\develope\vcpkg\buildtrees\libpq\build-libpq-x64-windows-RELEASE-err.log
The text was updated successfully, but these errors were encountered: