summaryrefslogtreecommitdiff
path: root/nuttx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-02-13 14:19:16 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2008-02-13 14:19:16 +0000
commit7a5e4001105782f3d41f08205ec7adfe26f5f491 (patch)
tree7b21742dcd420256182d9c4dcd033691bfaa8aef /nuttx
parent2d9932429ca82fc644bf61f277513ffdeb114206 (diff)
downloadpx4-nuttx-7a5e4001105782f3d41f08205ec7adfe26f5f491.tar.gz
px4-nuttx-7a5e4001105782f3d41f08205ec7adfe26f5f491.tar.bz2
px4-nuttx-7a5e4001105782f3d41f08205ec7adfe26f5f491.zip
ez8 now builds
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@675 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx')
-rw-r--r--nuttx/TODO17
-rw-r--r--nuttx/configs/z8encore000zco/src/Makefile2
2 files changed, 18 insertions, 1 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index d0e0deed4..788bab57b 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -376,6 +376,23 @@ o z80/z8 (arch/z80)
Description: The ZDS-II compiler (version 4.10.1) fails with an internal error
while compiler mm/mm_initialize. This has been reported as
incident 81509.
+
+ I have found the following workaround that I use to build for the
+ time being:
+
+ --- mm/mm_initialize.c.SAVE 2008-02-13 08:06:46.833857700 -0600
+ +++ mm/mm_initialize.c 2008-02-13 08:07:26.367608900 -0600
+ @@ -94,8 +94,11 @@
+ {
+ int i;
+
+ +#if 0 /* DO NOT CHECK IN */
+ CHECK_ALLOCNODE_SIZE;
+ CHECK_FREENODE_SIZE;
+ +#endif
+
+ /* Set up global variables */
+
Status: Open
Priority: High
diff --git a/nuttx/configs/z8encore000zco/src/Makefile b/nuttx/configs/z8encore000zco/src/Makefile
index c20d8d6da..a8b17432e 100644
--- a/nuttx/configs/z8encore000zco/src/Makefile
+++ b/nuttx/configs/z8encore000zco/src/Makefile
@@ -53,7 +53,7 @@ OBJS = $(AOBJS) $(COBJS)
all: libboard$(LIBEXT)
$(ASRCS) $(HEAD_ASRC): %$(ASMEXT): %.S
- @$(CPP) $(CPPFLAGS) $< -o $@.tmp
+ @$(CPP) $(CPPFLAGS) `cygpath -w $<` -o $@.tmp
@cat $@.tmp | sed -e "s/^#/;/g" > $@
@rm $@.tmp