aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/protobuf
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-03-31 11:29:26 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-03-31 11:44:51 +0000
commit7f2e00f30b81b81c64421e477e8982cb2ee2fa37 (patch)
tree61f4f2b6ffcf59c19e2dd9aa50a5fac7810989a7 /third_party/protobuf
parent964712c0750077f855b4704f076476f53e1b733b (diff)
Change from the MingW-specific proto compilers to the Windows-based ones.
protoc-mingw.exe dumps core for whatever reason, and these seem to work at least well enough for compile.sh . protoc-mingw.exe was apparently introduced due to a 1024-character path limit, but that doesn't break the continuous build. Fixes #1101. -- MOS_MIGRATED_REVID=118667728
Diffstat (limited to 'third_party/protobuf')
-rw-r--r--third_party/protobuf/BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/third_party/protobuf/BUILD b/third_party/protobuf/BUILD
index a169671ba0..93761f88f6 100644
--- a/third_party/protobuf/BUILD
+++ b/third_party/protobuf/BUILD
@@ -20,10 +20,10 @@ filegroup(
filegroup(
name = "protoc",
srcs = select({
- "//third_party:windows_mingw": ["protoc-mingw.exe"],
- "//third_party:windows_msys64_mingw64": ["protoc-mingw.exe"],
- "//third_party:windows_msys64": ["protoc-mingw.exe"],
- "//third_party:windows_clang": ["protoc-mingw.exe"],
+ "//third_party:windows_mingw": ["protoc-windows-x86_64.exe"],
+ "//third_party:windows_msys64_mingw64": ["protoc-windows-x86_64.exe"],
+ "//third_party:windows_msys64": ["protoc-windows-x86_64.exe"],
+ "//third_party:windows_clang": ["protoc-windows-x86_64.exe"],
"//third_party:darwin": ["protoc-osx-x86_32.exe"],
"//third_party:k8": ["protoc-linux-x86_64.exe"],
"//third_party:piii": ["protoc-linux-x86_32.exe"],