Linking issue Ubuntu 22.04 #9063
Replies: 3 comments 2 replies
-
FWIW, we test the instructions found here: https://github.com/googleapis/google-cloud-cpp/blob/main/doc/packaging.md as part of our CI build. A recent run (just as an example) is here. We can try to help, but we need a bit more information:
|
Beta Was this translation helpful? Give feedback.
-
Hi Coryan I did follow the same instructions mentioned in here -> https://github.com/googleapis/google-cloud-cpp/blob/main/doc/packaging.md I used the latest version v1.40.2 I used the following commands to build and install gRPC
I manually installed all the dependencies mentioned under Ubuntu (22.04 LTS - Jammy Jellyfish) I'm using simple makefiles and trying to get the binaries using the below snippet GCS_CXXFLAGS := $(shell pkg-config google_cloud_cpp_pubsub --cflags) Thanks |
Beta Was this translation helpful? Give feedback.
-
Looks like SSL_get_peer_certificate() is deprecated on OpenSSL 3.X.X. But my Ubuntu machine installs the same when I tried to install openssl. |
Beta Was this translation helpful? Give feedback.
-
Hi.
I'm trying to write a test program to use PubSub using google cloud c++ libraries.
I'm facing a linking issue in gRPC (C library) which uses a deprecated openssl function.
/usr/bin/ld: /usr/local/lib/libgrpc.a(ssl_transport_security.cc.o): in function
ssl_handshaker_result_extract_peer(tsi_handshaker_result const*, tsi_peer*)': ssl_transport_security.cc:(.text+0x3434): undefined reference to
SSL_get_peer_certificate'Do anyone face the same issue ?
Beta Was this translation helpful? Give feedback.
All reactions