From 5ef7594ebeaacd29668ddf130b9429522e0d95f6 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Fri, 23 Jan 2015 15:58:33 -0600 Subject: [PATCH] Update README file --- interpreters/README.txt | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/interpreters/README.txt b/interpreters/README.txt index 12e973057..c51f48eff 100644 --- a/interpreters/README.txt +++ b/interpreters/README.txt @@ -93,7 +93,16 @@ micropython discussions in the NuttX Yahoo! forum; people have found many creative way to link with the newlib math library, for example. - 5. Micro Python is released under the MIT license which is license-compatible + 5. See errors like this? + + 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: + + typedef int wint_t; + + 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: