Define additional variable when doing make develop

This commit is contained in:
ISSOtm
2020-02-03 19:55:46 +01:00
parent d15915ef14
commit fd32b2252f
2 changed files with 5 additions and 1 deletions

View File

@@ -221,7 +221,7 @@ develop:
-fsanitize=unreachable -fsanitize=vla-bound \
-fsanitize=signed-integer-overflow -fsanitize=bounds \
-fsanitize=object-size -fsanitize=bool -fsanitize=enum \
-fsanitize=alignment -fsanitize=null"
-fsanitize=alignment -fsanitize=null -DDEVELOP=1"
# Targets for the project maintainer to easily create Windows exes.
# This is not for Windows users!

View File

@@ -21,4 +21,8 @@
#define trap_
#endif
#ifndef DEVELOP
#define DEVELOP 0
#endif
#endif /* HELPERS_H */