From 88c0a658b7fd624af3dacf652c5ed16c02199650 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Tue, 13 Jan 2015 14:56:17 -0600 Subject: Update README --- apps/interpreters/README.txt | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 ----- -- cgit v1.2.3