aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-04-07 09:57:36 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-07 11:51:39 +0000
commitc644c4178cdd45f7ce01d2d657b41b5e0ec23cc9 (patch)
tree0b2a84f9db6419a3c3d2d43451fc57d069209f84 /third_party
parentf739cc3bfa6173e1f826c7bc9bbacc563eb16271 (diff)
Remove mentions of the arm32 proto compiler and update README.md.
Information in README.md about the statically linked x86_64 binary and the src/ directory got lost due to a snafu with updating the tree from the Google-internal version. -- MOS_MIGRATED_REVID=119250383
Diffstat (limited to 'third_party')
-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.