diff options
author | Oliver Reiche <oliver.reiche@huawei.com> | 2022-10-26 12:55:21 +0200 |
---|---|---|
committer | Oliver Reiche <oliver.reiche@huawei.com> | 2022-10-26 18:09:06 +0200 |
commit | a29128d4e5ba64bf09f67a7cffea6925af01e0e4 (patch) | |
tree | 0d3990a0abd3f6f9dfcb52cf45dc721d805b12e9 /etc | |
parent | e2f78a2f52f628322bd80829bc03e488973dea2e (diff) | |
download | justbuild-a29128d4e5ba64bf09f67a7cffea6925af01e0e4.tar.gz |
grpc: Do not warn about unkonwn warning options
Diffstat (limited to 'etc')
-rw-r--r-- | etc/defaults/CC/TARGETS.grpc | 5 |
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"] } } |