-
Notifications
You must be signed in to change notification settings - Fork 6.7k
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
clickhouse-cpp abseil link error #33914
Comments
Thanks for posting this issue. Could you please provide the sample repro project? |
https://github.com/Chrys4lisfag/vcpkg-clickhouse-issue-repo I've also seen mention of this issue here: #27250 (review) |
Hi, has the issue been confirmed? Do you need anything more for me to check? |
I will test this issue locally soon. |
Hi, I've seen that package was updated and the issue is fixed now. Everything works except for the compression option, I get crc mismatch when enable it. As I understand this can be caused by wrong cityhash package bundled Thank you for fixing compiling issue, I hope that compression will be fixed as well! |
This is an automated message. Per our repo policy, stale issues get closed if there has been no activity in the past 28 days. The issue will be automatically closed in 14 days. If you wish to keep this issue open, please add a new comment. |
Describe the bug
Can't compile the app with clickhouse-cpp package
clickhouse-cpp-lib-static.lib(decimal.cpp.obj) : error LNK2001: unresolved external symbol "class absl::int128 __cdecl absl::operator/(class absl::int128,class absl::int128)" (??Kabsl@@ya?AVint128@0@V10@0@Z)
Environment
To Reproduce
Steps to reproduce the behavior:
`clickhouse::ClientOptions options;
options.SetHost( "censored" );
options.SetPort( 8123 );
options.SetDefaultDatabase( "censored" );
options.SetUser( "censored" );
options.SetPassword( "censored" );
clickhouse::Client client( options );
The text was updated successfully, but these errors were encountered: