summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorOliver Reiche <oliver.reiche@huawei.com>2022-10-26 12:55:21 +0200
committerOliver Reiche <oliver.reiche@huawei.com>2022-10-26 18:09:06 +0200
commita29128d4e5ba64bf09f67a7cffea6925af01e0e4 (patch)
tree0d3990a0abd3f6f9dfcb52cf45dc721d805b12e9 /etc
parente2f78a2f52f628322bd80829bc03e488973dea2e (diff)
downloadjustbuild-a29128d4e5ba64bf09f67a7cffea6925af01e0e4.tar.gz
grpc: Do not warn about unkonwn warning options
Diffstat (limited to 'etc')
-rw-r--r--etc/defaults/CC/TARGETS.grpc5
1 files changed, 4 insertions, 1 deletions
diff --git a/etc/defaults/CC/TARGETS.grpc b/etc/defaults/CC/TARGETS.grpc
index 36b0bb33..aea78403 100644
--- a/etc/defaults/CC/TARGETS.grpc
+++ b/etc/defaults/CC/TARGETS.grpc
@@ -99,7 +99,10 @@
, { "type": "case"
, "expr": {"type": "var", "name": "COMPILER_FAMILY"}
, "case":
- { "clang": ["-Wno-implicit-const-int-float-conversion"]
+ { "clang":
+ [ "-Wno-unknown-warning-option"
+ , "-Wno-implicit-const-int-float-conversion"
+ ]
, "gnu": ["-Wno-stringop-overflow", "-Wno-stringop-truncation"]
}
}