aboutsummaryrefslogtreecommitdiff
path: root/nuttx/README.txt
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-08 14:50:43 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2012-07-08 14:50:43 +0000
commit266f29b3a16b6ade481c24811c51b14496badd45 (patch)
treeaccd637b0551acab73839ead97a8282e415aac1f /nuttx/README.txt
parent02b7f86536c75e36a7a6380abacc583cee3d56e4 (diff)
downloadpx4-firmware-266f29b3a16b6ade481c24811c51b14496badd45.tar.gz
px4-firmware-266f29b3a16b6ade481c24811c51b14496badd45.tar.bz2
px4-firmware-266f29b3a16b6ade481c24811c51b14496badd45.zip
Add a generic GCC stdarg.h header file
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4919 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/README.txt')
-rw-r--r--nuttx/README.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/nuttx/README.txt b/nuttx/README.txt
index 66f3aa3ec..a76725753 100644
--- a/nuttx/README.txt
+++ b/nuttx/README.txt
@@ -135,7 +135,7 @@ Notes about Header Files
Header Files Provided by Your Toolchain.
- Certain header files, such as setjmp.h, stdargs.h, and math.h, may still
+ Certain header files, such as setjmp.h, stdarg.h, and math.h, may still
be needed from your toolchain and your compiler may not, however, be able
to find these if you compile NuttX without using standard header file.
If that is the case, one solution is to copy those header file from
@@ -171,6 +171,12 @@ Notes about Header Files
than to include that archicture-specific math.h header file as the
system math.h header file.
+ stdarg.h
+
+ In most cases, the correct version of stdarg.h is the version provided with your toolchain. However, sometimes there are issues with with using your toolchains stdarg.h. For example, it may attempt to draw in header files that do not exist in NuttX or perhaps the header files that is uses are not compatible with the NuttX header files. In those cases, you can use an architecture-specific stdarg.h header file by defining CONFIG_ARCH_STDARG_H=y.
+ See the discussion above for the math.h header. This setting works exactly
+ the same for the stdarg.h header file.
+
CONFIGURING NUTTX
^^^^^^^^^^^^^^^^^