Static scanner and expensive debugging setup fix
This commit is contained in:
parent
5f60d14ede
commit
a08853a269
2 changed files with 2 additions and 2 deletions
|
@ -186,7 +186,7 @@ tests_run: $(tests_targets_ok)
|
||||||
|
|
||||||
STATIC_CHECKERS_ENABLE := nullability.NullableDereferenced nullability.NullablePassedToNonnull nullability.NullableReturnedFromNonnull optin.portability.UnixAPI valist.CopyToSelf valist.Uninitialized valist.Unterminated
|
STATIC_CHECKERS_ENABLE := nullability.NullableDereferenced nullability.NullablePassedToNonnull nullability.NullableReturnedFromNonnull optin.portability.UnixAPI valist.CopyToSelf valist.Uninitialized valist.Unterminated
|
||||||
STATIC_CHECKERS_DISABLE := deadcode.DeadStores
|
STATIC_CHECKERS_DISABLE := deadcode.DeadStores
|
||||||
STATIC_SCAN_FLAGS := --force-analyze-debug-code -o $(objdir)/static-scan/ $(addprefix -enable-checker ,$(STATIC_CHECKERS_ENABLE)) $(addprefix -disable-checker ,$(STATIC_CHECKERS_DISABLE))
|
STATIC_SCAN_FLAGS := -o $(objdir)/static-scan/ $(addprefix -enable-checker ,$(STATIC_CHECKERS_ENABLE)) $(addprefix -disable-checker ,$(STATIC_CHECKERS_DISABLE))
|
||||||
|
|
||||||
static-scan:
|
static-scan:
|
||||||
$(E)echo Running static code analysis
|
$(E)echo Running static code analysis
|
||||||
|
|
Loading…
Reference in a new issue