Merge pull request #4036 from yangjie11/master

[src] add a __RTTHREAD__ global macro definition
This commit is contained in:
Bernard Xiong
2020-11-18 22:08:01 +08:00
committed by GitHub
+3 -1
View File
@@ -29,6 +29,8 @@ if GetDepend('RT_USING_DEVICE') == False:
if GetDepend('RT_USING_SMP') == False:
SrcRemove(src, ['cpu.c'])
group = DefineGroup('Kernel', src, depend = [''], CPPPATH = CPPPATH)
CPPDEFINES = ['__RTTHREAD__']
group = DefineGroup('Kernel', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group')