aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-01-10 14:54:30 +0000
committerGravatar reed@google.com <reed@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2011-01-10 14:54:30 +0000
commit272e7545a396496d4758c4bc6e2a4e1de5bb3320 (patch)
tree94bf6af03b8000ac33bf3250893ee5e1585c49c8 /Makefile
parent9ce6e7524899380d18960b06e8002df01142580c (diff)
use -O2 for release, -g for debug (so we can get symbols for gdb)
git-svn-id: http://skia.googlecode.com/svn/trunk@681 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4afa0df929..b1a18a1929 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ CC := gcc
GPP := g++
C_INCLUDES := -Iinclude/config -Iinclude/core -Iinclude/effects -Iinclude/images -Iinclude/gpu -Iinclude/utils -Igpu/include
-CFLAGS := -Wall -O2 -fstrict-aliasing
+CFLAGS := -Wall -fstrict-aliasing
CFLAGS_SSE2 = $(CFLAGS) -msse2
LINKER_OPTS := -lpthread -lz
DEFINES := -DSK_CAN_USE_FLOAT
@@ -19,7 +19,9 @@ endif
ifeq ($(SKIA_DEBUG),true)
DEFINES += -DSK_DEBUG -DSK_SUPPORT_UNIT -DGR_DEBUG=1
+ CFLAGS := -g
else
+ CFLAGS := -O2
DEFINES += -DSK_RELEASE -DGR_DEBUG=0
endif