aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/zlib
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2017-07-05 10:16:56 +0200
committerGravatar Philipp Wollermann <philwo@google.com>2017-07-12 10:33:29 +0200
commit7a1e3a534efccc86dd86ba9d253f0a6801df7158 (patch)
treee008e95f9493baa8a63d2c32f48d5d5411dcf2e8 /third_party/zlib
parentd2ce7aba5f93d349f0eefaf649ea4c1cf3de24c1 (diff)
Fix #3280: SingleJar prints annoying "bit length overflow" messages
Change-Id: Iaaf3272f45cce04d41e75ffbe2fa5b5b9f68734c RELNOTES: None.
Diffstat (limited to 'third_party/zlib')
-rw-r--r--third_party/zlib/BUILD3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/zlib/BUILD b/third_party/zlib/BUILD
index b5c4596fab..534873fec8 100644
--- a/third_party/zlib/BUILD
+++ b/third_party/zlib/BUILD
@@ -16,7 +16,8 @@ cc_library(
name = "zlib",
srcs = glob(["*.c"]),
hdrs = glob(["*.h"]),
- copts = ["-w"],
+ # Use -Dverbose=-1 to turn off zlib's trace logging. (#3280)
+ copts = ["-w", "-Dverbose=-1"],
includes = ["."],
visibility = ["//visibility:public"],
)