-
In order to install OnnX library for linux after cloning the repository. git clone --recursive https://github.com/Microsoft/onnxruntime Then ran the build.sh with the following configuration --skip-tests --parallel and --config as Release and also as MinSizeRel But getting this error:- error: ‘const class google::protobuf::FieldOptions’ has no member named ‘unverified_lazy’ Tried searching the problem but didn't got any particular resolution to this yet availabe. Is there some tag I am missing while executing the build.sh ? Note:- The protobuf is already updated. Reference link:- onnx/onnx#5416 (Initially posted in Onxx channel) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
If protobuf is not installed, onnxruntime does compile it. It avoids any mismatch between the installed version of the version onnxruntime requires. Otherwise, you should follow the instructions detailed here: https://onnxruntime.ai/docs/build/inferencing.html#build-instructions. |
Beta Was this translation helpful? Give feedback.
If protobuf is not installed, onnxruntime does compile it. It avoids any mismatch between the installed version of the version onnxruntime requires. Otherwise, you should follow the instructions detailed here: https://onnxruntime.ai/docs/build/inferencing.html#build-instructions.