summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/interpreters/README.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/interpreters/README.txt b/apps/interpreters/README.txt
index c51f48eff..f3ba029b0 100644
--- a/apps/interpreters/README.txt
+++ b/apps/interpreters/README.txt
@@ -98,10 +98,15 @@ micropython
error: unknown type name 'wint_t'
You can't include the NuttX wchar.h header file where this is defined, but
- you can add this to the mpconfigport.h header file:
+ you can add this to the mpconfigport.h header file (if it is not already
+ there):
typedef int wint_t;
+ Is the missing wint_t definition coming from alloca.h? You can either
+ (1) replace alloc(a) with the #define described above, or (2) move the
+ typedef of wint_t to before the inclusion of alloca.h.
+
6. Micro Python is released under the MIT license which is license-compatible
with the NuttX 3-clause BSD license. Here is the full text of the Micro
Python LICENSE file as of 2015-01-14: