summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-13 00:01:40 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2014-04-13 00:01:40 +0300
commit9a092831f7c87ad14d74749451503a15fb59a732 (patch)
tree46bacb7b7795c637651240e428c7044a0e1250ee
parent06526e7ccc3eb3aad5e470ca2043a479d794d59f (diff)
downloadmicropython-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.mk2
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