Lines Matching +full:go +full:- +full:version
1 # Protocol Buffers - Code Example
12 https://developers.google.com/protocol-buffers/docs/tutorials
17 the latest version of bazel from bazel's release page:
28 $ bazel-bin/add_person_cpp addressbook.data
40 Go). However, since different language has different installation requirement,
60 "-lpthread" from the linker commands (perhaps replacing it with something else).
71 Make sure the runtime version is the same as protoc binary, or it may not work.
82 https://mvnrepository.com/artifact/com.google.protobuf/protobuf-java
86 $ export CLASSPATH=/path/to/protobuf-java-[version].jar
92 ### Go subsection
95 install the Go protoc plugin (protoc-gen-go):
97 $ go install google.golang.org/protobuf/cmd/protoc-gen-go@latest
99 The "go install" command will install protoc-gen-go into the GOBIN
101 running "go install" to change the install location. Make sure the
104 Build the Go samples with "make go". This creates the following
119 similar way and can view/modify files created by the Go example and vice
126 …ffer plugin as described [here](https://github.com/dart-lang/dart-protoc-plugin#how-to-build-and-u…
127 Note, the executable `bin/protoc-gen-dart` must be in your `PATH` for `protoc` to find it.