Skip to content

Commit

Permalink
ignore warnings on mksquashfs build
Browse files Browse the repository at this point in the history
  • Loading branch information
lalten committed Nov 20, 2023
1 parent 91aefdf commit 4f3bf8b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions third_party/squashfs-tools.BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,17 @@ cc_library(
],
),
hdrs = ["squashfs_fs.h"],
copts = [
"-Wno-gnu-pointer-arith",
"-Wno-gnu-statement-expression-from-macro-expansion",
"-Wno-gnu-zero-variadic-macro-arguments",
"-Wno-missing-field-initializers",
"-Wno-pedantic",
"-Wno-sign-compare",
"-Wno-unused-parameter",
"-Wno-variadic-macros",
"-Wno-zero-length-array",
],
defines = [
'COMP_DEFAULT=\\"gzip\\"',
'DATE=\\"redacted\\"',
Expand Down

0 comments on commit 4f3bf8b

Please sign in to comment.