For the version of grpc (1.38 or later) we are using, there are a bunch of submodule libraries such as libabsl*.a, libgpr.a, libupb.a, libaddress_sorting.a etc...
We are trying to create a static linked libgrpc.a and have all needed submodule libraries in it. So our main app only need to link to libgrpc.a instead of a bunch of libraries.
Is there an easy way to do it? Like some sort of hidden flag to use?
Looks like by default, none of the needed submodule libraries are in the libgrpc.a.
Thank you!