Skip to content

Commit

Permalink
make : add -DNDEBUG compile flag
Browse files Browse the repository at this point in the history
  • Loading branch information
ggerganov committed Feb 28, 2023
1 parent ad13890 commit af005d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ endif
# Compile flags
#

CFLAGS = -I. -O3 -std=c11 -fPIC
CXXFLAGS = -I. -I./examples -O3 -std=c++11 -fPIC
CFLAGS = -I. -O3 -DNDEBUG -std=c11 -fPIC
CXXFLAGS = -I. -I./examples -O3 -DNDEBUG -std=c++11 -fPIC
LDFLAGS =

# OS specific
Expand Down

0 comments on commit af005d5

Please sign in to comment.