mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Makefile: Change default flags to -O2.
We've now verified that it's reliable for the user to override CFLAGS on the command line, so just make the user do to get a debug build.
This commit is contained in:
parent
946c94b6a1
commit
da5a2e2fe6
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -1,6 +1,6 @@
|
|||
# Default FLAGS, (can be overriden by user such as "make CFLAGS=-O2")
|
||||
WARN_FLAGS=-Wall -Wextra -Wmissing-declarations -Wwrite-strings -Wswitch-enum
|
||||
CFLAGS=-g -O0
|
||||
CFLAGS=-O2
|
||||
|
||||
# Additional flags that we will append to whatever the user set.
|
||||
# These aren't intended for the user to manipulate.
|
||||
|
|
Loading…
Reference in a new issue