mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-19 01:40:43 +01:00
ci/skqp: handle all warnings printed with clang >= 14
Useful for the https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/21977 Reviewed-by: Guilherme Gallo <guilherme.gallo@collabora.com> Signed-off-by: David Heidelberg <david.heidelberg@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22808>
This commit is contained in:
parent
1671b5fd1f
commit
ad7ff4c25b
1 changed files with 13 additions and 1 deletions
|
|
@ -1,7 +1,12 @@
|
|||
cc = "clang"
|
||||
cxx = "clang++"
|
||||
|
||||
extra_cflags = [ "-DSK_ENABLE_DUMP_GPU", "-DSK_BUILD_FOR_SKQP" ]
|
||||
extra_cflags = [
|
||||
"-Wno-error",
|
||||
|
||||
"-DSK_ENABLE_DUMP_GPU",
|
||||
"-DSK_BUILD_FOR_SKQP"
|
||||
]
|
||||
extra_cflags_cc = [
|
||||
"-Wno-error",
|
||||
|
||||
|
|
@ -22,6 +27,13 @@ extra_cflags_cc = [
|
|||
"-Wno-suggest-destructor-override",
|
||||
"-Wno-return-std-move-in-c++11",
|
||||
"-Wno-extra-semi-stmt",
|
||||
"-Wno-reserved-identifier",
|
||||
"-Wno-bitwise-instead-of-logical",
|
||||
"-Wno-reserved-identifier",
|
||||
"-Wno-psabi",
|
||||
"-Wno-unused-but-set-variable",
|
||||
"-Wno-sizeof-array-div",
|
||||
"-Wno-string-concatenation",
|
||||
]
|
||||
|
||||
cc_wrapper = "ccache"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue