incubator-nuttx/libxx
Gregory Nutt 0c8c7fecf0 Add _ to the beginning of all debug macros to avoid name collisions 2016-06-16 12:33:32 -06:00
..
.gitignore
Kconfig Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation 2015-06-28 08:08:57 -06:00
Makefile Several Makefiles: Add .PHONY definitions to prevent 'clean up to date' message weirdness. 2016-05-10 15:44:06 -06:00
README.txt Fix references to the no-longer-existent misc/ directory in comments, README files, and documentation 2015-06-28 08:08:57 -06:00
libxx.hxx Standardize some naming in code section comments 2016-02-21 18:09:04 -06:00
libxx__gnu_unwind_find_exidx.cxx Add support uClibc++ excpetions. This involves additional handling for relative relation types, additional support for unwinding, as well as additional changes. The culmination of a big effort fromo Leo Aloe3132 2015-06-01 14:16:18 -06:00
libxx__gnu_unwind_find_exidx.hxx Standardize some naming in code section comments 2016-02-21 18:09:04 -06:00
libxx_cxa_atexit.cxx Rename libxx_internal.h to libxx.h 2015-12-30 07:56:56 -06:00
libxx_cxa_guard.cxx libxx: Add __cxa_guard_acquire, __cxa_guard_release and __cxa_guard_abort 2015-10-06 13:12:20 -04:00
libxx_cxapurevirtual.cxx Cosmetic changes 2015-05-05 06:42:58 -06:00
libxx_delete.cxx Rename libxx_internal.h to libxx.h 2015-12-30 07:56:56 -06:00
libxx_deletea.cxx Rename libxx_internal.h to libxx.h 2015-12-30 07:56:56 -06:00
libxx_eabi_atexit.cxx Rename libxx_internal.h to libxx.h 2015-12-30 07:56:56 -06:00
libxx_new.cxx Add _ to the beginning of all debug macros to avoid name collisions 2016-06-16 12:33:32 -06:00
libxx_newa.cxx Add _ to the beginning of all debug macros to avoid name collisions 2016-06-16 12:33:32 -06:00
libxx_stdthrow.cxx Add _ to the beginning of all debug macros to avoid name collisions 2016-06-16 12:33:32 -06:00

README.txt

libxx/README.txt
^^^^^^^^^^^^^^^^

This directory contains a fragmentary C++ library that will allow to build
only the simplest of C++ applications.  In the deeply embedded world, that
is probably all that is necessary.  If you have a need for more extensive
C++ support, the following libraries are recommended:

 - libstdc++  (part of GCC)
 - STLport    http://www.stlport.org/
 - uClibc++   http://cxx.uclibc.org/
 - uSTL       http://ustl.sourceforge.net/

There is a version of uClibc++ that has been customized for use with NuttX.
That version that can be found in the NuttX uClibc++ GIT repository.  Refer
to the top-level uClibc++ README.txt file for installation instructions.

At present, only the following are supported here:

 - void *operator new(std::size_t nbytes);
 - void operator delete(void* ptr);
 - void operator delete[](void *ptr);
 - void __cxa_pure_virtual(void);
 - int __aeabi_atexit(void* object, void (*destroyer)(void*), void *dso_handle);
 - int __cxa_atexit(__cxa_exitfunc_t func, FAR void *arg, FAR void *dso_handle);

operator new
------------

  This operator should take a type of size_t.  But size_t has an unknown underlying
  type.  In the nuttx sys/types.h header file, size_t is typed as uint32_t
  (which is determined by architecture-specific logic).  But the C++
  compiler may believe that size_t is of a different type resulting in
  compilation errors in the operator.  Using the underlying integer type
  instead of size_t seems to resolve the compilation issues. Need to
  REVISIT this.

  Once some C++ compilers, this will cause an error:

    Problem:     "'operator new' takes size_t ('...') as first parameter"
    Workaround:  Add -fpermissive to the compilation flags