Removed address sanitisation; Edit .gitignore
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1 +1,2 @@
|
||||
build/*
|
||||
build/
|
||||
bin/
|
||||
2
Makefile
2
Makefile
@@ -14,7 +14,7 @@ TESTS_DIR := tests
|
||||
OBJS := $(patsubst %.c,%.o, $(wildcard $(SRC_DIR)/*.c) $(wildcard $(LIB_DIR)/**/*.c))
|
||||
|
||||
CC := clang
|
||||
CFLAGS := -std=c99 -Wall -Wextra -Wpedantic -fsanitize=address
|
||||
CFLAGS := -std=c99 -Wall -Wextra -Wpedantic
|
||||
|
||||
ifeq ($(debug), 1)
|
||||
CFLAGS := $(CFLAGS) -g -O0
|
||||
|
||||
Reference in New Issue
Block a user