summaryrefslogtreecommitdiff
path: root/apps/interpreters/README.txt
diff options
context:
space:
mode:
Diffstat (limited to 'apps/interpreters/README.txt')
-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 c207f594a..09b7e8ce4 100644
--- a/apps/interpreters/README.txt
+++ b/apps/interpreters/README.txt
@@ -75,12 +75,17 @@ micropython
This change to mpconfigport.h is a partial work-around but does not solve
all issues:
- -#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPL)
+ -#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_MPZ)
+#define MICROPY_LONGINT_IMPL (MICROPY_LONGINT_IMPL_LONGLONG)
Someday it will probably be necessary to autogenerate the mpconfigport.h
header file with the correct properties for the target system.\
+ 3. Can't fine alloca.h? With GCC compilers you may be able replace the
+ inclusion of alloca.h in mkconfigport.h with:
+
+ #define alloca(a) __builtin_alloca(a)
+
pcode
-----