diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-13 00:01:40 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-04-13 00:01:40 +0300 |
commit | 9a092831f7c87ad14d74749451503a15fb59a732 (patch) | |
tree | 46bacb7b7795c637651240e428c7044a0e1250ee | |
parent | 06526e7ccc3eb3aad5e470ca2043a479d794d59f (diff) | |
download | micropython-9a092831f7c87ad14d74749451503a15fb59a732.tar.gz micropython-9a092831f7c87ad14d74749451503a15fb59a732.zip |
unix: Enable modffi by default.
ffi is needed to use micropython-lib, so let's have it enabled by default,
then folks who have troubles with libffi can disable it, instead of everyone
doing manual actions again and again.
-rw-r--r-- | unix/mpconfigport.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/mpconfigport.mk b/unix/mpconfigport.mk index d30be8b986..bfb01a71f1 100644 --- a/unix/mpconfigport.mk +++ b/unix/mpconfigport.mk @@ -7,4 +7,4 @@ MICROPY_USE_READLINE = 1 MICROPY_MOD_TIME = 1 # ffi module requires libffi (libffi-dev Debian package) -MICROPY_MOD_FFI = 0 +MICROPY_MOD_FFI = 1 |