aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/protobuf')
-rw-r--r--third_party/protobuf/BUILD1
-rw-r--r--third_party/protobuf/README.md11
2 files changed, 0 insertions, 12 deletions
diff --git a/third_party/protobuf/BUILD b/third_party/protobuf/BUILD
index 93761f88f6..8fd4e8e8dc 100644
--- a/third_party/protobuf/BUILD
+++ b/third_party/protobuf/BUILD
@@ -27,7 +27,6 @@ filegroup(
"//third_party:darwin": ["protoc-osx-x86_32.exe"],
"//third_party:k8": ["protoc-linux-x86_64.exe"],
"//third_party:piii": ["protoc-linux-x86_32.exe"],
- "//third_party:arm": ["protoc-linux-arm32.exe"],
"//third_party:freebsd": ["protoc-linux-x86_32.exe"],
}),
)
diff --git a/third_party/protobuf/README.md b/third_party/protobuf/README.md
index 466dbd15a3..74a7a4b2da 100644
--- a/third_party/protobuf/README.md
+++ b/third_party/protobuf/README.md
@@ -9,10 +9,6 @@ How to update the binaries other than `protoc-linux-x86_64.exe` and `protoc-linu
7. Update third_party/BUILD to point to the new jar file.
8. Done.
-Because maven.org doesn't have a prebuilt binary for linux on ARM, you need to build the binary
-yourself on the target system. Follow the build steps of protocol buffer to create the binary,
-copy it to this directory and rename it to "protoc-linux-arm32.exe".
-
The 64-bit Linux version of the proto compiler is linked statically. To update it, do
the following steps on an x86_64 machine:
@@ -24,13 +20,6 @@ the following steps on an x86_64 machine:
6. `make`
7. `cp src/protoc <Bazel tree>/third_party/protobuf/protoc-linux-x86_64.exe` .
-
-For example:
-
-$ cp /usr/bin/protoc $BAZEL/third_party/protobuf/protoc-linux-arm32.exe
-
-This should be done before you run ./compile.sh.
-
How to update the `src/` directory:
1. Run `git clone http://github.com/google/protobuf.git` in a convenient directory.