summaryrefslogtreecommitdiff
path: root/nuttx/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-13 18:01:46 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-12-13 18:01:46 +0000
commitea45a3718fc280b291b2f45d467a2494973636fa (patch)
tree446e7ccffd35a3baa2afefa3afc05ba6fdd09427 /nuttx/README.txt
parentc37fdc28c2cfdf41a549ba245c1cad85b757e53a (diff)
downloadpx4-nuttx-ea45a3718fc280b291b2f45d467a2494973636fa.tar.gz
px4-nuttx-ea45a3718fc280b291b2f45d467a2494973636fa.tar.bz2
px4-nuttx-ea45a3718fc280b291b2f45d467a2494973636fa.zip
types blkcnt_t and off_t should not depend on memory model; Remove non-standard type STATUS
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@2330 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/README.txt')
-rwxr-xr-xnuttx/README.txt44
1 files changed, 30 insertions, 14 deletions
diff --git a/nuttx/README.txt b/nuttx/README.txt
index 0e50bfcff..56f6e5b73 100755
--- a/nuttx/README.txt
+++ b/nuttx/README.txt
@@ -9,20 +9,36 @@ README
INSTALLATION
^^^^^^^^^^^^
-Download and unpack the NuttX tarball. If you are reading this, then you
-have probably already done that. After unpacking, you will end up with a
-directory called nuttx-version (where version is the NuttX version number).
-You might want to rename that directory nuttx to match the various instructions
-in the documentation and some scripts in the source tree.
-
-That nuttx build directory should reside in a path that contains no spaces
-in the higher level directory names. For example, under Cygwin, your home
-directory might be formed from your first and last names like: "/home/First Last".
-That will cause strange errors when the make system tries to build.
-
-[Actually, that is probably not to difficult to fix. Some Makefiles probably
-just need some pathes within double quotes]
-
+Download and Unpack:
+
+ Download and unpack the NuttX tarball. If you are reading this, then
+ you have probably already done that. After unpacking, you will end
+ up with a directory called nuttx-version (where version is the NuttX
+ version number). You might want to rename that directory nuttx to
+ match the various instructions in the documentation and some scripts
+ in the source tree.
+
+ That nuttx build directory should reside in a path that contains no
+ spaces in the higher level directory names. For example, under
+ Cygwin, your home directory might be formed from your first and last
+ names like: "/home/First Last". That will cause strange errors when
+ the make system tries to build.
+
+ [Actually, that problem is probably not to difficult to fix. Some
+ Makefiles probably just need some pathes within double quotes]
+
+A Note about Header Files:
+
+ NuttX compiles without using the standard header files that are
+ distributed with your toolchain. That is correct behavior in most
+ cases because the header files bundled with your toolchain (such as
+ stdio.h) are probably not correct for use with NuttX. Certain
+ header files, such as setjmp.h, may be needed from your toolchain.
+ In that case, one solution is to copy that file from your toolchain
+ into the NuttX include directory. If you prefer to use the stdint.h
+ and stdbool.h header files from your toolchain, those could be copied
+ too. Using most other header files from your toolchain would probably
+ cause errors.
CONFIGURING NUTTX
^^^^^^^^^^^^^^^^^