Create an STM32F4Discovery configuration for testing uClibc++

git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@5300 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
patacongo 2012-11-02 23:22:48 +00:00
parent ed2aec2f18
commit c2fd94127d

View File

@ -203,8 +203,10 @@ static void test_exception(void)
// Name: cxxtest_main // Name: cxxtest_main
//***************************************************************************/ //***************************************************************************/
int cxxtest_main(int argc, char *argv[]) extern "C"
{ {
int cxxtest_main(int argc, char *argv[])
{
// If C++ initialization for static constructors is supported, then do // If C++ initialization for static constructors is supported, then do
// that first // that first
@ -220,4 +222,6 @@ int cxxtest_main(int argc, char *argv[])
#endif #endif
return 0; return 0;
}
} }