aboutsummaryrefslogtreecommitdiff
path: root/unix/Makefile
diff options
context:
space:
mode:
authorDamien George2014-01-26 17:52:23 +0000
committerDamien George2014-01-26 17:52:23 +0000
commit56bb636014aaab4ac5dfada6b80fe5c2de820d34 (patch)
treecc61535a9b7fef1ad0c1dc43ef1a9044186bb27b /unix/Makefile
parent554a75b6891b70a54f3a86b80f5ee3e19668939e (diff)
Change -Og to -O0 in unix-cpy/Makefile; cast to small int in socket.c.
Diffstat (limited to 'unix/Makefile')
-rw-r--r--unix/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile b/unix/Makefile
index 067a44fcd..75825b7c4 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -13,7 +13,7 @@ include ../py/py.mk
CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX
LDFLAGS = -lm
-#Debugging/Optimization
+# Debugging/Optimization
ifdef DEBUG
CFLAGS += -O0 -g
else