|
vor 7 Jahren | |
---|---|---|
.. | ||
Kconfig | vor 7 Jahren | |
Lock.h | vor 8 Jahren | |
Mail.h | vor 8 Jahren | |
Mutex.cpp | vor 8 Jahren | |
Mutex.h | vor 8 Jahren | |
Queue.h | vor 8 Jahren | |
README.md | vor 10 Jahren | |
SConscript | vor 8 Jahren | |
Semaphore.cpp | vor 8 Jahren | |
Semaphore.h | vor 8 Jahren | |
Thread.cpp | vor 7 Jahren | |
Thread.h | vor 8 Jahren | |
crt.cpp | vor 10 Jahren | |
crt.h | vor 10 Jahren | |
crt_init.c | vor 7 Jahren |
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:
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);