summaryrefslogtreecommitdiff
path: root/nuttx/examples
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-04-19 13:05:39 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-04-19 13:05:39 +0000
commit05bb03bca1ec249685d0af3665b2121e12fd8db4 (patch)
treea530c8bb5ce62e0a018b7d9856291fa9404c0033 /nuttx/examples
parent396da79a6d002bc1e27a0f903094d6866d0d0b96 (diff)
downloadpx4-nuttx-05bb03bca1ec249685d0af3665b2121e12fd8db4.tar.gz
px4-nuttx-05bb03bca1ec249685d0af3665b2121e12fd8db4.tar.bz2
px4-nuttx-05bb03bca1ec249685d0af3665b2121e12fd8db4.zip
Add C++ HelloWorld example
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1706 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/examples')
-rw-r--r--nuttx/examples/README.txt17
1 files changed, 16 insertions, 1 deletions
diff --git a/nuttx/examples/README.txt b/nuttx/examples/README.txt
index faa378bb2..81b4f2d73 100644
--- a/nuttx/examples/README.txt
+++ b/nuttx/examples/README.txt
@@ -21,7 +21,7 @@ examples/dhcpd
cd examples/dhcpd
make -f Makefile.host
- Kernel configuratin settings:
+ NuttX configuration settings:
CONFIG_EXAMPLE_DHCPD_NOMAC - (May be defined to use software assigned MAC)
CONFIG_EXAMPLE_DHCPD_IPADDR - Target IP address
@@ -39,6 +39,21 @@ examples/hello
than examples/null with a single printf statement. Again useful only
for bringing up new NuttX architectures.
+ NuttX configuration settings:
+
+ CONFIG_EXAMPLE_HELLOXX_NOSTATICCONST - Set if system does not support
+ static constructors.
+ CONFIG_EXAMPLE_HELLOXX_NOSTACKCONST - Set if the systgem does not
+ support constructionof objects on the stack.
+
+examples/helloxx
+^^^^^^^^^^^^^^^^
+
+ This is C++ version of the "Hello, World!!" example. It is intended
+ only to verify that the C++ compiler is function, that basic C++
+ library suupport is available, and that class are instantiated
+ correctly.
+
examples/mount
^^^^^^^^^^^^^^