summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2015-01-13 14:56:17 -0600
committerGregory Nutt <gnutt@nuttx.org>2015-01-13 14:56:17 -0600
commit88c0a658b7fd624af3dacf652c5ed16c02199650 (patch)
treed3fe8961ad22c3ec45930494c4467b43a19718c5
parent24546734da04b8e1a42d8b67ffce163592758dc5 (diff)
downloadpx4-nuttx-88c0a658b7fd624af3dacf652c5ed16c02199650.tar.gz
px4-nuttx-88c0a658b7fd624af3dacf652c5ed16c02199650.tar.bz2
px4-nuttx-88c0a658b7fd624af3dacf652c5ed16c02199650.zip
Update README
-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
-----