Suppress warnings for Bazel third_party deps (#1054)

These warnings occur when building with gcc 7.3.0.
master
Rodrigo Queiro 2018-04-16 17:48:18 +02:00 committed by Wally B. Feed
parent 911c9ab920
commit c20f22e986
2 changed files with 4 additions and 0 deletions

View File

@ -273,6 +273,7 @@ cc_library(
"-D_REENTRANT", "-D_REENTRANT",
"-Wno-attributes", "-Wno-attributes",
"-Wno-cpp", "-Wno-cpp",
"-Wno-int-in-bool-context",
"-Wno-maybe-uninitialized", "-Wno-maybe-uninitialized",
"-Wno-misleading-indentation", "-Wno-misleading-indentation",
"-Wno-strict-aliasing", "-Wno-strict-aliasing",

View File

@ -46,5 +46,8 @@ cc_library(
"zutil.h", "zutil.h",
], ],
hdrs = ["zlib.h"], hdrs = ["zlib.h"],
copts = [
"-Wno-implicit-function-declaration",
],
includes = ["."], includes = ["."],
) )