Skip to content
Snippets Groups Projects
Commit 1c1d902c authored by Paul Sokolovsky's avatar Paul Sokolovsky
Browse files

Makefile: Allow to override "super optimization" options used for some files.

To help with debugging issue like #510 for example.
parent 6c94abe3
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,9 @@ HEADER_BUILD = $(BUILD)/genhdr
# file containing qstr defs for the core Python bit
PY_QSTR_DEFS = $(PY_SRC)/qstrdefs.h
# some code is performance bottleneck and compiled with other optimization options
CSUPEROPT = -O3
# py object files
PY_O_BASENAME = \
nlrx86.o \
......@@ -135,8 +138,8 @@ $(PY_BUILD)/emitnthumb.o: py/emitnative.c
$(call compile_c)
# optimising gc for speed; 5ms down to 4ms on pybv2
$(PY_BUILD)/gc.o: CFLAGS += -O3
$(PY_BUILD)/gc.o: CFLAGS += $(CSUPEROPT)
# optimising vm for speed, adds only a small amount to code size but makes a huge difference to speed (20% faster)
$(PY_BUILD)/vm.o: CFLAGS += -O3
$(PY_BUILD)/vm.o: CFLAGS += $(CSUPEROPT)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment