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",
|
"-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",
|
||||||
|
|
|
@ -46,5 +46,8 @@ cc_library(
|
||||||
"zutil.h",
|
"zutil.h",
|
||||||
],
|
],
|
||||||
hdrs = ["zlib.h"],
|
hdrs = ["zlib.h"],
|
||||||
|
copts = [
|
||||||
|
"-Wno-implicit-function-declaration",
|
||||||
|
],
|
||||||
includes = ["."],
|
includes = ["."],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue