Change -Og to -O0 in unix-cpy/Makefile; cast to small int in socket.c.

This commit is contained in:
Damien George
2014-01-26 17:52:23 +00:00
parent 554a75b689
commit 56bb636014
3 changed files with 4 additions and 4 deletions

View File

@@ -10,9 +10,9 @@ include ../py/py.mk
CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX
LDFLAGS = -lm
#Debugging/Optimization
# Debugging/Optimization
ifdef DEBUG
CFLAGS += -Og -ggdb
CFLAGS += -O0 -g
else
CFLAGS += -Os #-DNDEBUG
endif