diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-28 20:38:14 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-28 20:38:14 +0300 |
commit | 6055d411a9be4a1659e0a85535bce4ab906708a0 (patch) | |
tree | 5f82ca1c276f9060065ef9fffb2ce4b655a5f9a9 | |
parent | cbe544a76da598b27e8fc9fe9fde1db71c099e20 (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.mk | 4 |
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 |