chenjh 055c3d3e1d [Update] Sync from v4.0.3 před 5 roky
..
Kconfig 7bc87e4ae8 [Kconfig] Rename all of KConfig files to 'Kconfig' před 8 roky
Lock.h 9064b28c2a [license] Change license to Apache. před 7 roky
Mail.h bf4a51b599 Update the kernel and components to master version. před 6 roky
Mutex.h bf4a51b599 Update the kernel and components to master version. před 6 roky
Queue.h 4875ee8a3a Sync from master (75a3f3dd3a930eab1dc58fa0258a9d1605a0ac11) před 6 roky
README.md 3962937626 Update README.md před 11 roky
SConscript eb2c098197 [C++] Add C++ interface for RT-Thread kernel. před 9 roky
Semaphore.h 9064b28c2a [license] Change license to Apache. před 7 roky
Thread.h 4875ee8a3a Sync from master (75a3f3dd3a930eab1dc58fa0258a9d1605a0ac11) před 6 roky
crt.h bf4a51b599 Update the kernel and components to master version. před 6 roky
crt_init.c bf4a51b599 Update the kernel and components to master version. před 6 roky
cxx_Mutex.cpp 055c3d3e1d [Update] Sync from v4.0.3 před 5 roky
cxx_Semaphore.cpp 055c3d3e1d [Update] Sync from v4.0.3 před 5 roky
cxx_Thread.cpp 055c3d3e1d [Update] Sync from v4.0.3 před 5 roky
cxx_crt.cpp 055c3d3e1d [Update] Sync from v4.0.3 před 5 roky

README.md

C++ support for RT-Thread

This is the C++ component in RT-Thread RTOS. In order to support C++ language, this component implement a basic environment, such as new/delete operators.

Because RT-Thread RTOS is used in embedded system mostly, there are some rules for C++ applications:

  1. DOES NOT use exception.
  2. DOES NOT use Run-Time Type Information (RTTI).
  3. Template is discouraged and it easily causes code text large.
  4. Static class variables are discouraged. The time and place to call their constructor function could not be precisely controlled and make multi-threaded programming a nightmare.
  5. Multiple inheritance is strongly discouraged, as it can cause intolerable confusion.

NOTE: The libc (RT_USING_LIBC in rtconfig.h) must be enable.

About GNU GCC compiler

please add following string in your ld link script:

// in your .text section
PROVIDE(__ctors_start__ = .);
/* old GCC version uses .ctors */
KEEP(*(SORT(.ctors.*)))
KEEP(*(.ctors))
/* new GCC version uses .init_array */
KEEP (*(SORT(.init_array.*)))
KEEP (*(.init_array))
PROVIDE(__ctors_end__ = .);

. = ALIGN(4);

// as a standalone section if you use ARM target.

/* The .ARM.exidx section is used for C++ exception handling. */
/* .ARM.exidx is sorted, so has to go in its own output section.  */
__exidx_start = .;
ARM.exidx :
{
    *(.ARM.exidx* .gnu.linkonce.armexidx.*)

    /* This is used by the startup in order to initialize the .data secion */
    _sidata = .;
} > CODE
__exidx_end = .;

/* .data section which is used for initialized data */

// in your .data section
PROVIDE(__dtors_start__ = .);
KEEP(*(SORT(.dtors.*)))
KEEP(*(.dtors))
PROVIDE(__dtors_end__ = .);

. = ALIGN(4);