Convert configs/sim/ostest to use mconf tool; Add configs/sim/cxxtest

git-svn-id: http://svn.code.sf.net/p/nuttx/code/trunk@5285 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo
2012-10-31 22:06:31 +00:00
parent 05a1bb2abf
commit 25136e9a50
12 changed files with 1023 additions and 211 deletions
+10 -4
View File
@@ -302,11 +302,17 @@ fi
echo "Installing uClibc++ in the NuttX source tree"
cp -a ./libxx/* ${libxx_srcdir}/. ||
{ echo "Copy from ./libxx/* to ${libxx_srcdir}/. failed"; exit 1; }
filelist=`find libxx -type f | fgrep -v '.svn'`
cp -a ./include/* ${nuttx_incdir}/. ||
{ echo "Copy from ./include/* ${nuttx_incdir}/. failed"; exit 1; }
for file in $filelist; do
install -D $file ${nuttx_path}/${file}
done
filelist=`find include -type f | fgrep -v '.svn'`
for file in $filelist; do
install -D $file ${nuttx_path}/${file}
done
echo "Installation suceeded"
echo ""