summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-28 20:38:14 +0300
committerPaul Sokolovsky <pfalcon@users.sourceforge.net>2016-05-28 20:38:14 +0300
commit6055d411a9be4a1659e0a85535bce4ab906708a0 (patch)
tree5f82ca1c276f9060065ef9fffb2ce4b655a5f9a9
parentcbe544a76da598b27e8fc9fe9fde1db71c099e20 (diff)
unix/mpconfigport.mk: Document MICROPY_STANDALONE make-level option.
Avoid using system libraries, use copies bundled with MicroPython as submodules (currently affects only libffi, other dependencies either already used as bundled-only (axtls), or can't be bundled (so far), like libjni).
-rw-r--r--unix/mpconfigport.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/unix/mpconfigport.mk b/unix/mpconfigport.mk
index 4744172da..88bd749a7 100644
--- a/unix/mpconfigport.mk
+++ b/unix/mpconfigport.mk
@@ -26,3 +26,7 @@ MICROPY_PY_USSL = 1
# jni module requires JVM/JNI
MICROPY_PY_JNI = 0
+
+# Avoid using system libraries, use copies bundled with MicroPython
+# as submodules (currently affects only libffi).
+MICROPY_STANDALONE = 0