Skip to content

Commit

Permalink
Fix release using debug symbols and not optimizing
Browse files Browse the repository at this point in the history
  • Loading branch information
penguin-teal committed Dec 17, 2023
1 parent 8fb3b54 commit a459601
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ERRORS := -Werror=implicit-int -Werror=implicit-function-declaration
CFLAGS := $(WARNINGS) $(ERRORS) -std=c99

DEBUGCFLAGS := -g3
RELEASECFLAGS := -g3
RELEASECFLAGS := -O3
SO_C_FLAGS := -fPIC
SO_LD_FLAGS := -shared

Expand Down

0 comments on commit a459601

Please sign in to comment.