mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 17:13:31 +08:00
de4f237482
* Update Kconfig * Update trap_gcc.S * Update bsp/hifive1/drivers/SConscript Co-authored-by: Man, Jianting (Meco) <920369182@qq.com> * Update SConscript * [atomic]提交一份arm与risc-v架构下的常用原子操作函数 * 修改变量类型 * 更新rtatomic.h与atomic_port.c * 更新rt-thread\libcpu\arm\common\atomic_port.c * 更新include/rtatomic.h与libcpu/arm/common/SConscript * 更新include/rtatomic.h * 修正格式与Kconfig * 修正格式与文件结构 * 规范文件格式与文件重命名 * 添加测试用例与CI * 添加函数声明 * 修改virt64/SConscript 添加atomic_riscv.c * 1.规范代码风格 * 2.添加RISC-V64原子指令支持 解决在RV64下编译器将32-bit运算结果扩展为64-bit 导致判断错误 * 添加C11标准库原子操作测试 --------- Co-authored-by: Man, Jianting (Meco) <920369182@qq.com>
50 lines
1.0 KiB
Python
50 lines
1.0 KiB
Python
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
src = []
|
|
CPPPATH = [cwd]
|
|
|
|
if GetDepend(['UTEST_MEMHEAP_TC']):
|
|
src += ['memheap_tc.c']
|
|
|
|
if GetDepend(['UTEST_SMALL_MEM_TC']):
|
|
src += ['mem_tc.c']
|
|
|
|
if GetDepend(['UTEST_SLAB_TC']):
|
|
src += ['slab_tc.c']
|
|
|
|
if GetDepend(['UTEST_IRQ_TC']):
|
|
src += ['irq_tc.c']
|
|
|
|
if GetDepend(['UTEST_SEMAPHORE_TC']):
|
|
src += ['semaphore_tc.c']
|
|
|
|
if GetDepend(['UTEST_EVENT_TC']):
|
|
src += ['event_tc.c']
|
|
|
|
if GetDepend(['UTEST_TIMER_TC']):
|
|
src += ['timer_tc.c']
|
|
|
|
if GetDepend(['UTEST_MESSAGEQUEUE_TC']):
|
|
src += ['messagequeue_tc.c']
|
|
|
|
if GetDepend(['UTEST_SIGNAL_TC']):
|
|
src += ['signal_tc.c']
|
|
|
|
if GetDepend(['UTEST_MUTEX_TC']):
|
|
src += ['mutex_tc.c']
|
|
|
|
if GetDepend(['UTEST_MAILBOX_TC']):
|
|
src += ['mailbox_tc.c']
|
|
|
|
if GetDepend(['UTEST_THREAD_TC']):
|
|
src += ['thread_tc.c']
|
|
|
|
if GetDepend(['UTEST_ATOMIC_TC']):
|
|
src += ['atomic_tc.c']
|
|
|
|
group = DefineGroup('utestcases', src, depend = ['RT_USING_UTESTCASES'], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|