You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run with g++ -Iinclude -lgrpc++ -lgrpc_unsecure -labsl_synchronization -o test_agrpc main/test_agrpc.cpp && ./test_agrpc, it stuck.
but run with g++ -Iinclude -lgrpc++ -labsl_synchronization -o test_agrpc main/test_agrpc.cpp && ./test_agrpc , it is ok.
looks have something wrong with -lgrpc_unsecure
my enviroment is gcc 14.1.1 fedora 41 @agrpc v3.1.0@6cee405b
The text was updated successfully, but these errors were encountered:
You may not mix grpc++ and grpc_unsecure within one application. This is a limitation of gRPC. In other words, remove -lgrpc++ and -lgrpc_unsecure from the first command line, add only -lgrpc++_unsecure.
run with
g++ -Iinclude -lgrpc++ -lgrpc_unsecure -labsl_synchronization -o test_agrpc main/test_agrpc.cpp && ./test_agrpc
, it stuck.but run with
g++ -Iinclude -lgrpc++ -labsl_synchronization -o test_agrpc main/test_agrpc.cpp && ./test_agrpc
, it is ok.looks have something wrong with
-lgrpc_unsecure
my enviroment is gcc 14.1.1 fedora 41 @agrpc v3.1.0@6cee405b
The text was updated successfully, but these errors were encountered: