commit | d4faeabb78ef15f26188c8ba247398b2bac373e5 | [log] [tgz] |
---|---|---|
author | Chris Ball <cjb@laptop.org> | Fri Sep 21 18:16:22 2012 +0800 |
committer | Chris Ball <cjb@laptop.org> | Fri Sep 21 18:16:22 2012 +0800 |
tree | a0a89018009e47fdffbb8500bf78ad25a0bc5100 | |
parent | 8649651b743a5d7c290ea0f8058794f8d127736e [diff] |
Turn on gcc optimization (-O2) This is required by distros that use Fortify.
diff --git a/Makefile b/Makefile index 34c5ec3..f03f131 100644 --- a/Makefile +++ b/Makefile
@@ -1,6 +1,6 @@ CC = gcc AM_CFLAGS = -D_FILE_OFFSET_BITS=64 -D_FORTIFY_SOURCE=2 -CFLAGS = -g -O0 +CFLAGS = -g -O2 objects = mmc.o mmc_cmds.o CHECKFLAGS= -Wall -Werror -Wuninitialized -Wundef