From 7f2e00f30b81b81c64421e477e8982cb2ee2fa37 Mon Sep 17 00:00:00 2001 From: Lukacs Berki Date: Thu, 31 Mar 2016 11:29:26 +0000 Subject: 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 --- third_party/protobuf/BUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'third_party/protobuf') 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"], -- cgit v1.2.3