aboutsummaryrefslogtreecommitdiff
path: root/cc3200/application.mk
diff options
context:
space:
mode:
authorJan Čapek2016-03-10 09:22:41 +0000
committerDamien George2016-04-16 13:18:09 +0100
commitd76c65f599b77aa275eda3d2248cde16f6be7e10 (patch)
tree4d5b53d2bd8189d8bbeb280fbdf7c55ef1c9cafc /cc3200/application.mk
parentdbbf0827862d2e300827468020c6c558b7934276 (diff)
py: Add rules for automated extraction of qstrs from sources.
- add template rule that converts a specified source file into a qstring file - add special rule for generating a central header that contains all extracted/autogenerated strings - defined by QSTR_DEFS_COLLECTED variable. Each platform appends a list of sources that may contain qstrings into a new build variable: SRC_QSTR. Any autogenerated prerequisities are should be appened to SRC_QSTR_AUTO_DEPS variable. - remove most qstrings from py/qstrdefs, keep only qstrings that contain special characters - these cannot be easily detected in the sources without additional annotations - remove most manual qstrdefs, use qstrdef autogen for: py, cc3200, stmhal, teensy, unix, windows, pic16bit: - remove all micropython generic qstrdefs except for the special strings that contain special characters (e.g. /,+,<,> etc.) - remove all port specific qstrdefs except for special strings - append sources for qstr generation in platform makefiles (SRC_QSTR)
Diffstat (limited to 'cc3200/application.mk')
-rw-r--r--cc3200/application.mk6
1 files changed, 6 insertions, 0 deletions
diff --git a/cc3200/application.mk b/cc3200/application.mk
index 9e49a7c24..2eef3c8c3 100644
--- a/cc3200/application.mk
+++ b/cc3200/application.mk
@@ -171,6 +171,12 @@ OBJ += $(addprefix $(BUILD)/, $(APP_MODS_SRC_C:.c=.o) $(APP_CC3100_SRC_C:.c=.o)
OBJ += $(addprefix $(BUILD)/, $(APP_MAIN_SRC_C:.c=.o) $(APP_LIB_SRC_C:.c=.o) $(APP_STM_SRC_C:.c=.o))
OBJ += $(BUILD)/pins.o
+# List of sources for qstr extraction
+SRC_QSTR += $(APP_MODS_SRC_C) $(APP_MISC_SRC_C) $(APP_STM_SRC_C)
+# Append any auto-generated sources that are needed by sources listed in
+# SRC_QSTR
+SRC_QSTR_AUTO_DEPS +=
+
# Add the linker script
LINKER_SCRIPT = application.lds
LDFLAGS += -T $(LINKER_SCRIPT)