mirror of
https://github.com/ostreedev/ostree.git
synced 2024-12-23 21:35:26 +03:00
ci: Enable -Werror=maybe-uninitialized
We don't want to inject this warning by default for every build like the other ones in `configure.ac`, since it can be spruriously wrong. But there's no reason not to have a more extended set of warnings for well-known toolchains (e.g. f25). Closes: #943 Approved by: jlebon
This commit is contained in:
parent
46e7f08daa
commit
027c77c621
@ -12,7 +12,9 @@ packages:
|
||||
- git
|
||||
|
||||
env:
|
||||
CFLAGS: '-fsanitize=undefined -fsanitize-undefined-trap-on-error -fsanitize=address -O2 -Wp,-D_FORTIFY_SOURCE=2'
|
||||
# Enable all the sanitizers for this primary build.
|
||||
# We only use -Werror=maybe-uninitialized here with a "fixed" toolchain
|
||||
CFLAGS: '-fsanitize=undefined -fsanitize-undefined-trap-on-error -fsanitize=address -O2 -Wp,-D_FORTIFY_SOURCE=2 -Werror=maybe-uninitialized'
|
||||
ASAN_OPTIONS: 'detect_leaks=0' # Right now we're not fully clean, but this gets us use-after-free etc
|
||||
# TODO when we're doing leak checks: G_SLICE: "always-malloc"
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user