-
Notifications
You must be signed in to change notification settings - Fork 2.9k
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
Possibility to change protobuf version #4026
Comments
git fetch --tags
git reset --hard v3.12.1 |
BTW, for example, our onnxruntime server depends on GRPC, and GRPC depends on protobuf too. Though it uses a different protobuf version that onnxruntime needs, it doesn't matter. |
Update: |
Is your feature request related to a problem? Please describe.
I faced with a conflict between different protobuf version (probably this is problem of linker on android)
I cannot chance
protobuf
version oflibmediadrm
because this is system library.So it will be nice to have a possibility to change version
protobuf
library.Are there some requirements for the minimal
protobuf
version?System information
Describe the solution you'd like
It will be nice to have some options on
build.[sh|bat]
or CMakeLists.txt./build.sh --protobuf_prefix ...
or./build.sh --protobuf_version ...
orDescribe alternatives you've considered
A possible workaround is to use
dlopen
, but it doesn't quite fit my needshttps://stackoverflow.com/questions/52203862/building-an-android-executable-grpc-server-that-uses-protocol-buffers-without-aAdditional context
The text was updated successfully, but these errors were encountered: