Skip to content

Commit

Permalink
DEBUG makefile option set -g instead of -Wall
Browse files Browse the repository at this point in the history
  • Loading branch information
danomatika committed Jan 9, 2018
1 parent eb11db1 commit cd3b6e4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -22,6 +22,7 @@
* makefile: added MULTI option to build libpd with multiple instance support
* makefile: now installs libpd .def and .lib files on Windows
* makefile: C++ headers are now conditionally installed if built with UTIL=true
* makefile: DEBUG option now sets -g instead of -Wall
* makefile: use install command and set permissions
* makefile: fixed install bug when libdir doesn't exist (Wim Muskee)
* makefile: added BSD build support (Luc Hondareyte)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -124,7 +124,7 @@ endif
# conditional optimizations or debug settings
OPT_CFLAGS = -O3
ifeq ($(DEBUG), true)
OPT_CFLAGS = -Wall
OPT_CFLAGS = -g
endif

# conditional to set numeric locale to default "C"
Expand Down

0 comments on commit cd3b6e4

Please sign in to comment.