aboutsummaryrefslogtreecommitdiff
path: root/unix/Makefile
diff options
context:
space:
mode:
authorDamien George2014-04-14 19:45:37 +0100
committerDamien George2014-04-14 19:45:37 +0100
commit1da8a6cfc78424095ccb56b0fdbe8eaca0ee8ddf (patch)
tree45adcf86f7008178ae3eacf6f8936a9b0affc40a /unix/Makefile
parent5904dad842a40a61a9ee588a66a32b38ca434a41 (diff)
parentb1f692e82ed43a25690918fc24302654a1d2034d (diff)
Merge pull request #482 from aitjcize/threaded
Use computed goto instead of switching op-codes.
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 ac1baf3d0..64f5a6cf1 100644
--- a/unix/Makefile
+++ b/unix/Makefile
@@ -11,7 +11,7 @@ QSTR_DEFS = qstrdefsport.h
include ../py/py.mk
# compiler settings
-CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT)
+CFLAGS = -I. -I$(PY_SRC) -Wall -Werror -ansi -std=gnu99 -DUNIX $(CFLAGS_MOD) $(COPT) -DMICROPY_USE_COMPUTED_GOTO
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)