summaryrefslogtreecommitdiff
path: root/nuttx/TODO
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-16 15:43:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2011-04-16 15:43:39 +0000
commit105a59fa90e7dd9f7cd2bea774d99e60c3562fa8 (patch)
tree3130fee552185c1366e662b4506a3f5ffb3d870f /nuttx/TODO
parentcbb245c0b6816c10be52a03a3ea8c66db8e0a7ae (diff)
downloadnuttx-105a59fa90e7dd9f7cd2bea774d99e60c3562fa8.tar.gz
nuttx-105a59fa90e7dd9f7cd2bea774d99e60c3562fa8.tar.bz2
nuttx-105a59fa90e7dd9f7cd2bea774d99e60c3562fa8.zip
THTTPD works on LPCXpresso
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3514 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/TODO')
-rw-r--r--nuttx/TODO23
1 files changed, 23 insertions, 0 deletions
diff --git a/nuttx/TODO b/nuttx/TODO
index d40421663..15852c314 100644
--- a/nuttx/TODO
+++ b/nuttx/TODO
@@ -182,6 +182,29 @@ o Binary loaders (binfmt/)
Status: Open
Priority: Low
+ Description: Windows build issue. Almost all configurations that use NXFLAT have
+ the linker script specified like this:
+
+ NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T$(TOPDIR)/binfmt/libnxflat/gnu-nxflat.ld -no-check-sections
+
+
+ That will not work for windows-based tools because they require Windows
+ style paths. The solution is to do something like this:
+
+ if ($(WINTOOL)y)
+ NXFLATLDSCRIPT=${cygpath -w $(TOPDIR)/binfmt/libnxflat/gnu-nxflat.ld}
+ else
+ NXFLATLDSCRIPT=$(TOPDIR)/binfmt/libnxflat/gnu-nxflat.ld
+ endif
+
+ Then use
+
+ NXFLATLDFLAGS2 = $(NXFLATLDFLAGS1) -T"$(NXFLATLDSCRIPT)" -no-check-sections
+
+ Status: Open
+ Priority: There are too many references like the above. They will have
+ to get fixed as needed for Windows native tool builds.
+
o Network (net/, drivers/net)
^^^^^^^^^^^^^^^^^^^^^^^^^^^