summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorMaria Matejka <mq@ucw.cz>2019-08-17 08:54:08 +0200
committerMaria Matejka <mq@ucw.cz>2020-05-01 15:19:12 +0200
commita08853a26989d343c507a41257dedcdea3befd73 (patch)
tree357877e4951d97ac1594c873a2abc6ea5633627a /Makefile.in
parent5f60d14edeb48824d28e6393e7eb1aa50d5f2cd1 (diff)
Static scanner and expensive debugging setup fix
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in
index 2698e34d..da6cd206 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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_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:
$(E)echo Running static code analysis