Home | History | Annotate | Download | only in proto
      1 If you wish to use these protobufs, you must generate their source files
      2 using  protoc from the protobuf project (http://code.google.com/p/protobuf/).
      3 
      4 -----
      5 Troubleshooting for Protobuf:
      6 
      7 Install:
      8 If you are getting permission errors install, make sure you are not trying to
      9 install from an NFS.
     10 
     11 
     12 Running protoc:
     13 protoc: error while loading shared libraries: libprotobuf.so.0: cannot open
     14 shared object file: No such file or directory
     15 
     16 The issue is that Ubuntu 8.04 doesn't include /usr/local/lib in
     17 library paths. 
     18 
     19 To fix it for your current terminal session, just type in
     20 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/local/lib 
     21