Use newer instead of new to avoid gcc complaining about poisoned token.
[bertos.git] / wizard / const.py
index 86115373713e24b62c9d2c42e5fd129430f13ac1..34873fdf7e27be8f8ebaf386f0ea40a1f61801e5 100644 (file)
@@ -15,6 +15,7 @@ CPU_DEF = {
     "DEFINITION_PATH": "",
     "TOOLCHAIN": "",
     "CPU_TAGS": [],
+    "CPU_FLAG_NAME": "",
     "CORE_CPU": "",
     "SCRIPT_DIR": "",
     "HW_DIR": "",
@@ -22,8 +23,15 @@ CPU_DEF = {
     "C_FLAGS": [],
     "CPPA_FLAGS" : [],
     "CPP_FLAGS" : [],
+    "CPPA_FLAGS": [],
+    "CXX_FLAGS": [],
+    "AS_FLAGS": [],
+    "AR_FLAGS": [],
     "LD_FLAGS" : [],
     "CPPA_SRC" : [],
+    "CXX_SRC": [],
+    "ASRC": [],
+    "C_SRC": [],
     "SUPPORTED_DRV" : [],
     "PC_SRC" : [],
     "CPU_DESC" : []
@@ -45,4 +53,13 @@ EXTENSION_FILTER = (
     ".cxx",
     ".h",
     ".c++",
-)
\ No newline at end of file
+    ".mk",
+    "Makefile",
+)
+
+MODULE_DEFINITION = {
+    "module_name": "module_name",
+    "module_configuration": "module_configuration",
+    "module_depends": "module_depends",
+    "module_harvard": "module_harvard",
+}
\ No newline at end of file