Added -fsanitize=address to the makefile.
This commit is contained in:
parent
314c29cc32
commit
82dcadde0d
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -67,8 +67,8 @@ OPT = -Ofast
|
|||
else
|
||||
OPT = -O3
|
||||
endif
|
||||
CFLAGS = -I. $(OPT) -std=c11 -fPIC
|
||||
CXXFLAGS = -I. -I./common $(OPT) -std=c++11 -fPIC
|
||||
CFLAGS = -I. $(OPT) -std=c11 -fPIC -g -fsanitize=address
|
||||
CXXFLAGS = -I. -I./common $(OPT) -std=c++11 -fPIC -g -fsanitize=address
|
||||
LDFLAGS =
|
||||
|
||||
ifdef LLAMA_DEBUG
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue