Go to file
Mike Kruskal 3edec1f288
Implement cmake linux tests (#10306)
* Initial implementation of cmake tests for linux

* Reverting accidental distcheck changes

* Deleting extract_includes.bat now that it's been replaced with the generated file_lists.cmake

* Removing unnecessary endif conditions
2022-07-25 20:36:47 -07:00
.github Sync from Piper @461045587 2022-07-14 21:05:36 +00:00
benchmarks Sync from Piper @461045587 2022-07-14 21:05:36 +00:00
build_defs Merge 21.x into main 2022-05-28 00:06:34 +00:00
cmake Implement cmake linux tests (#10306) 2022-07-25 20:36:47 -07:00
conformance Add PHP and Ruby failures from newly added conformance test cases 2022-07-18 21:58:24 +00:00
csharp Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
docs Sync from Piper @458241011 2022-06-30 16:14:29 +00:00
editors
examples Sync from Piper @454206746 2022-06-10 14:32:14 -04:00
java Update version in java/protoc/pom.xml 2022-07-21 23:43:33 +00:00
kokoro Implement cmake linux tests (#10306) 2022-07-25 20:36:47 -07:00
m4
objectivec Migrating macos php builds from 7.0/7.3 to 7.4/8.0 (#10274) 2022-07-20 20:58:32 -07:00
php Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
pkg Adding Github Action to keep CMake generated file lists up to date (#10243) 2022-07-11 22:04:40 -07:00
protoc-artifacts Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
python Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
ruby Updating version.json and repo version numbers to: 21.3 2022-07-20 11:33:34 -07:00
src Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
third_party Sync from Piper @453701696 2022-06-08 12:49:35 -04:00
toolchain Optimization is now working. 2022-05-10 02:06:31 +00:00
util/python Rename all BUILD files to BUILD.bazel (#9892) 2022-04-29 17:57:55 -07:00
.bazelignore Remove Abseil dependency from CMake build (#10056) 2022-05-26 12:13:41 -07:00
.gitignore Sync from Piper @453894829 2022-06-09 07:42:14 -04:00
.gitmodules Sync from Piper @453701696 2022-06-08 12:49:35 -04:00
.readthedocs.yml
BUILD.bazel Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
CHANGES.txt Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00
CMakeLists.txt Implement cmake linux tests (#10306) 2022-07-25 20:36:47 -07:00
CONTRIBUTING.md
CONTRIBUTORS.txt
LICENSE
Makefile.am Implement cmake linux tests (#10306) 2022-07-25 20:36:47 -07:00
Protobuf-C++.podspec Updating version.json and repo version numbers to: 21.3 2022-07-20 11:33:34 -07:00
Protobuf.podspec Updating version.json and repo version numbers to: 21.3 2022-07-20 11:33:34 -07:00
README.md Adding a section about the Google Group to the README.md file 2022-07-17 13:16:59 +00:00
SECURITY.md
WORKSPACE Added a Bazel dependency for upb (#9812) 2022-04-25 15:00:57 -07:00
appveyor.bat
appveyor.yml
autogen.sh
configure.ac Updating version.json and repo version numbers to: 21.3 2022-07-20 11:33:34 -07:00
fix_permissions.sh
generate_changelog.py Remove the JavaScript implementation (#9874) 2022-04-28 12:08:26 -07:00
generate_descriptor_proto.sh
global.json
maven_install.json
post_process_dist.sh Remove the JavaScript implementation (#9874) 2022-04-28 12:08:26 -07:00
protobuf-lite.pc.in
protobuf.bzl [Bazel/C++] Factor out util library (#9987) 2022-05-17 18:13:22 -07:00
protobuf.pc.in
protobuf_deps.bzl Upgrade upb and update CHANGES.txt (#10286) 2022-07-20 10:52:55 -07:00
protobuf_release.bzl Update protobuf_version.bzl to separate protoc and per-language java major version (#9900) 2022-05-03 11:58:31 -04:00
protobuf_version.bzl Updating version.json and repo version numbers to: 21.3 2022-07-20 11:33:34 -07:00
tests.sh Migrating macos php builds from 7.0/7.3 to 7.4/8.0 (#10274) 2022-07-20 20:58:32 -07:00
update_compatibility_version.py
version.json Merge branch '21.x' into merge-21-x 2022-07-21 23:38:04 +00:00

README.md

Protocol Buffers - Google's data interchange format

Copyright 2008 Google Inc.

https://developers.google.com/protocol-buffers/

Overview

Protocol Buffers (a.k.a., protobuf) are Google's language-neutral, platform-neutral, extensible mechanism for serializing structured data. You can find protobuf's documentation on the Google Developers site.

This README file contains protobuf installation instructions. To install protobuf, you need to install the protocol compiler (used to compile .proto files) and the protobuf runtime for your chosen programming language.

Protocol Compiler Installation

The protocol compiler is written in C++. If you are using C++, please follow the C++ Installation Instructions to install protoc along with the C++ runtime.

For non-C++ users, the simplest way to install the protocol compiler is to download a pre-built binary from our release page:

https://github.com/protocolbuffers/protobuf/releases

In the downloads section of each release, you can find pre-built binaries in zip packages: protoc-$VERSION-$PLATFORM.zip. It contains the protoc binary as well as a set of standard .proto files distributed along with protobuf.

If you are looking for an old version that is not available in the release page, check out the maven repo here:

https://repo1.maven.org/maven2/com/google/protobuf/protoc/

These pre-built binaries are only provided for released versions. If you want to use the github main version at HEAD, or you need to modify protobuf code, or you are using C++, it's recommended to build your own protoc binary from source.

If you would like to build protoc binary from source, see the C++ Installation Instructions.

Protobuf Runtime Installation

Protobuf supports several different programming languages. For each programming language, you can find instructions in the corresponding source directory about how to install protobuf runtime for that specific language:

Language Source
C++ (include C++ runtime and protoc) src
Java java
Python python
Objective-C objectivec
C# csharp
Ruby ruby
Go protocolbuffers/protobuf-go
PHP php
Dart dart-lang/protobuf

Quick Start

The best way to learn how to use protobuf is to follow the tutorials in our developer guide:

https://developers.google.com/protocol-buffers/docs/tutorials

If you want to learn from code examples, take a look at the examples in the examples directory.

Documentation

The complete documentation for Protocol Buffers is available via the web at:

https://developers.google.com/protocol-buffers/

Developer Community

To be alerted to upcoming changes in Protocol Buffers and connect with protobuf developers and users, join the Google Group.