diff options
author | Oxore <oxore@protonmail.com> | 2023-06-26 01:49:24 +0300 |
---|---|---|
committer | Oxore <oxore@protonmail.com> | 2023-06-26 01:49:24 +0300 |
commit | 2dd7bd6ca24b6a28ff36c5c441442d5885c0b611 (patch) | |
tree | 27f14cd43512559ecb6d3bbe15be218937f6ea5b /Makefile | |
parent | e46fb8f882b00fe9d24b2dc8810b033164c4b10c (diff) |
Fix reg parsing, refactor error messages, add more sanitizers
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ WARNFLAGS = -Wall -Wextra -pedantic -Wlogical-op INCLUDES = lib -_FLAGS = -O2 -fsanitize=unreachable -fsanitize=address +_FLAGS = -O0 -fsanitize=bounds-strict,unreachable,address,undefined _CFLAGS = $(CFLAGS) $(WARNFLAGS) $(addprefix -I,$(INCLUDES)) $(_FLAGS) -pipe -g _CXXFLAGS = $(CXXFLAGS) $(WARNFLAGS) $(addprefix -I,$(INCLUDES)) $(_FLAGS) -pipe -g LDSCRIPTS = |