From 6055d411a9be4a1659e0a85535bce4ab906708a0 Mon Sep 17 00:00:00 2001 From: Paul Sokolovsky Date: Sat, 28 May 2016 20:38:14 +0300 Subject: [PATCH] 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). --- unix/mpconfigport.mk | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unix/mpconfigport.mk b/unix/mpconfigport.mk index 4744172da7..88bd749a71 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