aboutsummaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorstijn2014-11-16 10:56:22 +0100
committerDamien George2014-11-21 19:38:33 +0000
commitb89eaaa2e29d94ab3c837c680312df9edbee6f7f (patch)
tree7882c5c6949d32ee1918c3f4bd213869551d0a24 /windows
parentc9f8f653adbff865d5cebdf0e46dc22680cebce4 (diff)
windows: Update config with latest features
- update mpconfigport.h to reflect latest unix version - fix compilation error in modure due to msvc not allowing dynamic arrays
Diffstat (limited to 'windows')
-rw-r--r--windows/mpconfigport.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/windows/mpconfigport.h b/windows/mpconfigport.h
index 7b23f5cb1..5da912dec 100644
--- a/windows/mpconfigport.h
+++ b/windows/mpconfigport.h
@@ -47,7 +47,9 @@
#define MICROPY_STREAMS_NON_BLOCK (1)
#define MICROPY_OPT_COMPUTED_GOTO (0)
#define MICROPY_PY_BUILTINS_STR_UNICODE (1)
+#define MICROPY_PY_BUILTINS_MEMORYVIEW (1)
#define MICROPY_PY_BUILTINS_FROZENSET (1)
+#define MICROPY_PY_BUILTINS_COMPILE (1)
#define MICROPY_PY_SYS_EXIT (1)
#define MICROPY_PY_SYS_PLATFORM "win32"
#define MICROPY_PY_SYS_MAXSIZE (1)
@@ -59,6 +61,8 @@
#define MICROPY_PY_UCTYPES (1)
#define MICROPY_PY_UZLIB (1)
#define MICROPY_PY_UJSON (1)
+#define MICROPY_PY_URE (1)
+#define MICROPY_PY_UHEAPQ (1)
#define MICROPY_ERROR_REPORTING (MICROPY_ERROR_REPORTING_DETAILED)
#ifdef _MSC_VER
@@ -66,7 +70,7 @@
#endif
#define MICROPY_ENABLE_EMERGENCY_EXCEPTION_BUF (1)
-#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (128)
+#define MICROPY_EMERGENCY_EXCEPTION_BUF_SIZE (256)
#define MICROPY_PORT_INIT_FUNC init()
#define MICROPY_PORT_DEINIT_FUNC deinit()