Damien George
11 years ago
9 changed files with 59 additions and 10 deletions
@ -0,0 +1,10 @@ |
|||
This is experimental, community-supported Windows port of MicroPython. |
|||
It is based on Unix port, and expected to remain so. |
|||
|
|||
To cross-compile under Debian/Ubuntu Linux system: |
|||
|
|||
sudo apt-get install mingw32 mingw32-binutils mingw32-runtime |
|||
make CC=i586-mingw32msvc-gcc |
|||
|
|||
The port requires additional testing, debugging, and patches. Please |
|||
consider to contribute. |
@ -0,0 +1,13 @@ |
|||
# Enable/disable modules and 3rd-party libs to be included in interpreter
|
|||
|
|||
# Build 32-bit binaries on a 64-bit host
|
|||
MICROPY_FORCE_32BIT = 0 |
|||
|
|||
# Linking with GNU readline causes binary to be licensed under GPL
|
|||
MICROPY_USE_READLINE = 0 |
|||
|
|||
# Subset of CPython time module
|
|||
MICROPY_MOD_TIME = 1 |
|||
|
|||
# ffi module requires libffi (libffi-dev Debian package)
|
|||
MICROPY_MOD_FFI = 0 |
Loading…
Reference in new issue