summaryrefslogtreecommitdiff
path: root/nuttx/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-13 00:38:59 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-11-13 00:38:59 +0000
commit5e9f367866ccbca32109ea4356c74539557993f5 (patch)
tree52e5f1dca94711649e55aa614e2be4ecbbda9f86 /nuttx/README.txt
parent333b9449c02c242229449e8a35023d740f2e93f7 (diff)
downloadnuttx-5e9f367866ccbca32109ea4356c74539557993f5.tar.gz
nuttx-5e9f367866ccbca32109ea4356c74539557993f5.tar.bz2
nuttx-5e9f367866ccbca32109ea4356c74539557993f5.zip
Add tools/mkdeps.bat and tools/mkdeps.c
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5342 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/README.txt')
-rw-r--r--nuttx/README.txt16
1 files changed, 7 insertions, 9 deletions
diff --git a/nuttx/README.txt b/nuttx/README.txt
index 737d4d4e2..ae0a4a023 100644
--- a/nuttx/README.txt
+++ b/nuttx/README.txt
@@ -578,18 +578,16 @@ Window Native Toolchain Issues
is not a long as you might think because there is no dependency checking
if you are using a native Windows toolchain. That bring us to #3:
- 3. Dependencies are not made when using Windows versions of the GCC. This is
- because the dependencies are generated using Windows pathes which do not
- work with the Cygwin make.
+ 3. Dependencies are not made when using Windows versions of the GCC on a POSIX
+ platform (i.e., Cygwin). This is because the dependencies are generated
+ using Windows paths which do not work with the Cygwin make.
- Support has been added for making dependencies with the windows-native toolchains.
- That support can be enabled by modifying your Make.defs file as follows:
+ MKDEP = $(TOPDIR)/tools/mknulldeps.sh
- - MKDEP = $(TOPDIR)/tools/mknulldeps.sh
- + MKDEP = $(TOPDIR)/tools/mkdeps.sh --winpaths "$(TOPDIR)"
+ If you are building natively on Windows, then no such conflict exists
+ and the best selection is:
- If you have problems with the dependency build (for example, if you are not
- building on C:), then you may need to modify tools/mkdeps.sh
+ MKDEP = $(TOPDIR)/tools/mkdeps.exe
General Pre-built Toolchain Issues