summaryrefslogtreecommitdiff
path: root/nuttx/Kconfig
diff options
context:
space:
mode:
authorGregory Nutt <gnutt@nuttx.org>2014-03-06 11:19:05 -0600
committerGregory Nutt <gnutt@nuttx.org>2014-03-06 11:19:05 -0600
commit054d97740b3bdb2b38d001605dd43177d2539ec0 (patch)
tree8aba2277ed2fe2aad8e49cbdf947765c43e5254a /nuttx/Kconfig
parent97d0749f8f2265f449302b4d4f131a9a7cca86dd (diff)
downloadnuttx-054d97740b3bdb2b38d001605dd43177d2539ec0.tar.gz
nuttx-054d97740b3bdb2b38d001605dd43177d2539ec0.tar.bz2
nuttx-054d97740b3bdb2b38d001605dd43177d2539ec0.zip
configs/rgmp/arm/default: Configuration converted to use the kconfig-frontends tools
Diffstat (limited to 'nuttx/Kconfig')
-rw-r--r--nuttx/Kconfig17
1 files changed, 17 insertions, 0 deletions
diff --git a/nuttx/Kconfig b/nuttx/Kconfig
index e4667d045..eecb99670 100644
--- a/nuttx/Kconfig
+++ b/nuttx/Kconfig
@@ -246,6 +246,23 @@ endmenu # Binary Output Formats
menu "Customize Header Files"
+config ARCH_STDINT_H
+ bool "stdint.h"
+ default n
+ ---help---
+ The stdint.h header file can be found at nuttx/include/stdint.h.
+ However, that header includes logic to redirect the inclusion of an
+ architecture specific header file like:
+
+ #ifdef CONFIG_ARCH_STDINT_H
+ # include <arch/stdint.h>
+ #else
+ ...
+ #endif
+
+ Recall that that include path, include/arch, is a symbolic link and
+ will refer to a version of stdint.h at nuttx/arch/<architecture>/include/stdint.h.
+
config ARCH_STDBOOL_H
bool "stdbool.h"
default n