I 'd like to add grpc support into an existing C cross-compiled project.
To my best understanding, there is no grpc implementation in C language.
I'm thinking of either using C++ or Go grpc, compiling one of them to a library using internal cross-compilation toolchain and then linking with my C project.
What is the best approach? Which language should I choose? How do I cross-compile using mine internal toolchain?
I've looked into the github documentation but there is not enough info regarding cross-compilation.