mirror of
https://git.adityakumar.xyz/llama.cpp.git
synced 2024-11-09 15:29:43 +00:00
LLAMA_DEBUG adds debug symbols (#1617)
This commit is contained in:
parent
1b78ed2081
commit
3b126f654f
1 changed files with 5 additions and 1 deletions
6
Makefile
6
Makefile
|
@ -44,7 +44,11 @@ CFLAGS = -I. -O3 -std=c11 -fPIC
|
|||
CXXFLAGS = -I. -I./examples -O3 -std=c++11 -fPIC
|
||||
LDFLAGS =
|
||||
|
||||
ifndef LLAMA_DEBUG
|
||||
ifdef LLAMA_DEBUG
|
||||
CFLAGS += -O0 -g
|
||||
CXXFLAGS += -O0 -g
|
||||
LDFLAGS += -g
|
||||
else
|
||||
CFLAGS += -DNDEBUG
|
||||
CXXFLAGS += -DNDEBUG
|
||||
endif
|
||||
|
|
Loading…
Reference in a new issue