mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-02-05 13:14:03 +00:00
code.google.com is obsolete. Fix all broken markdown links while at it. Change-Id: I6a337bf4b84eacd5f5c749a4ee61331553279009 Reviewed-on: https://chromium-review.googlesource.com/411800 Reviewed-by: Mike Frysinger <vapier@chromium.org>
21 lines
633 B
Plaintext
21 lines
633 B
Plaintext
If you wish to use these protobufs, you must generate their source files
|
|
using protoc from the protobuf project (https://github.com/google/protobuf).
|
|
|
|
-----
|
|
Troubleshooting for Protobuf:
|
|
|
|
Install:
|
|
If you are getting permission errors install, make sure you are not trying to
|
|
install from an NFS.
|
|
|
|
|
|
Running protoc:
|
|
protoc: error while loading shared libraries: libprotobuf.so.0: cannot open
|
|
shared object file: No such file or directory
|
|
|
|
The issue is that Ubuntu 8.04 doesn't include /usr/local/lib in
|
|
library paths.
|
|
|
|
To fix it for your current terminal session, just type in
|
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib
|