summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-05-11 18:41:48 +0100
committerDamien George <damien.p.george@gmail.com>2014-05-11 18:41:48 +0100
commit96b62855b55cbe6398f03cc3fabcf508e626dc41 (patch)
tree0c3257070193dd0802dfe5c4625b806ca1064940
parentee7a880d6e669423309c3a5f8c20b59027604572 (diff)
parentb9d8091d0e7bfe718eadeea241f08b9bdaa7270e (diff)
downloadmicropython-96b62855b55cbe6398f03cc3fabcf508e626dc41.tar.gz
micropython-96b62855b55cbe6398f03cc3fabcf508e626dc41.zip
Merge pull request #604 from stinos/windows-enablefeat
windows: Enable frozen set and sys.exit
-rw-r--r--windows/mpconfigport.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/windows/mpconfigport.h b/windows/mpconfigport.h
index 0a1e313cb8..974c454d39 100644
--- a/windows/mpconfigport.h
+++ b/windows/mpconfigport.h
@@ -41,6 +41,8 @@
#define MICROPY_ENABLE_LEXER_UNIX (1)
#define MICROPY_ENABLE_MOD_CMATH (1)
#define MICROPY_MOD_SYS_STDFILES (1)
+#define MICROPY_MOD_SYS_EXIT (1)
+#define MICROPY_ENABLE_FROZENSET (1)
#define MICROPY_FLOAT_IMPL (MICROPY_FLOAT_IMPL_DOUBLE)
#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
#define MICROPY_PORT_INIT_FUNC init()