Skip to content

Commit

Permalink
Disable C compiler warnings entirely (#555)
Browse files Browse the repository at this point in the history
* Disable C compiler warnings entirely

* Add back existing warning disablement
  • Loading branch information
serebit authored Apr 7, 2024
1 parent e817d4e commit bfab2ff
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ project(
)

# Vala generates bad C code and missing these on gcc 14 will cause FTBFS
# Additionally, Meson 1.4 unhides warnings from valac-generated C code,
# which causes unreadable logspam. Reenables prior behavior.
am_cflags = [
'-w',
'-Wno-incompatible-pointer-types',
'-Wno-implicit-function-declaration',
]
Expand Down

0 comments on commit bfab2ff

Please sign in to comment.