bfsoyc
bfsoyc
> Are those shared libraries prebuilt? Or are you building them with Bazel? > > In my case, I’m packaging binaries with lots of shared libraries and haven’t encountered this...
@aiuto , thanks for your attention. FYI: https://github.com/bfsoyc/bar_repo/tree/main ```bash bazel build //bin:deploy tar -zxf bazel-bin/bin/deploy.tar --directory {test_dir} cd {test_dir} ./bin/main # this should crash due to library loading failure. ```
I was blocked by the similar issue. Here is my scenario: I try to build protobuf with cpp impl backend (with flag --define=use_fast_cpp_protos=true) The protobuf require python toolchain for compiling....
> I was blocked by the similar issue. Here is my scenario: I try to build protobuf with cpp impl backend (with flag --define=use_fast_cpp_protos=true) > > The protobuf require python...