atwww b421b4e1f4 修复C++11 thread_local对象析构函数与实际内存释放动作顺序相反问题 11 meses atrás
..
armclang a514b3bd16 [components][kconfig] 整理Kconfig目录名称和结构 (#5698) 3 anos atrás
figures a514b3bd16 [components][kconfig] 整理Kconfig目录名称和结构 (#5698) 3 anos atrás
gcc 4f5ba63c7c [cpp] attach CXXFLAGS to reduce the resource consumptions 1 ano atrás
README.md a514b3bd16 [components][kconfig] 整理Kconfig目录名称和结构 (#5698) 3 anos atrás
README_ZH.md a514b3bd16 [components][kconfig] 整理Kconfig目录名称和结构 (#5698) 3 anos atrás
SConscript c4df1d6a19 [cpp] support rt-thread CPP wrapper sub-switch macros 1 ano atrás
atomic_8.c cb6d451564 Add GCC generalized atomic operation function 1 ano atrás
thread_local_impl.cpp a514b3bd16 [components][kconfig] 整理Kconfig目录名称和结构 (#5698) 3 anos atrás

README.md

C++ 11 support for RT-Thread

Features

Here are some features about rt-thread c++11 threading futures.

  • Atomic.
  • Conditional variables.
  • Clocks.
  • Future.
  • Mutexes.
  • Threads.
  • TLS.

How To Use

Note that using C++ 11 in rt-thread requires modifying some of the files in the toolchain. Before modifying the tool, back up the tool chain.

  1. Enable c++11 support

  1. Download toolchain GCC 10.2.1:

    gcc version 10.2.1 20201103 (release) (GNU Arm Embedded Toolchain 10-2020-q4-major)
    
  2. Delete the following files:

    rm -f toolchain/arm-none-eabi/include/c++/10.2.1/thread
    rm -f toolchain/arm-none-eabi/include/c++/10.2.1/mutex
    rm -f toolchain/arm-none-eabi/include/c++/10.2.1/condition_variable
    rm -f toolchain/arm-none-eabi/include/c++/10.2.1/future
    rm -f toolchain/arm-none-eabi/include/pthread.h
    
  3. Clear the contents of the following files and keep them to prevent compilation failures:

    toolchain/arm-none-eabi/include/sys/_pthreadtypes.h
    
  4. Update rtconfig.py file. add compilation parameters:

    CXXFLAGS = CFLAGS  + ' -std=c++11 -fabi-version=0 -MMD -MP -MF'