Suppress warnings for Bazel third_party deps (#1054)
These warnings occur when building with gcc 7.3.0.master
parent
911c9ab920
commit
c20f22e986
|
@ -273,6 +273,7 @@ cc_library(
|
|||
"-D_REENTRANT",
|
||||
"-Wno-attributes",
|
||||
"-Wno-cpp",
|
||||
"-Wno-int-in-bool-context",
|
||||
"-Wno-maybe-uninitialized",
|
||||
"-Wno-misleading-indentation",
|
||||
"-Wno-strict-aliasing",
|
||||
|
|
|
@ -46,5 +46,8 @@ cc_library(
|
|||
"zutil.h",
|
||||
],
|
||||
hdrs = ["zlib.h"],
|
||||
copts = [
|
||||
"-Wno-implicit-function-declaration",
|
||||
],
|
||||
includes = ["."],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue