mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-27 20:20:26 +08:00
13 lines
273 B
Python
13 lines
273 B
Python
from building import *
|
|
Import('rtconfig')
|
|
|
|
src = Glob('*.c')
|
|
group = []
|
|
|
|
CPPDEFINES = ['RT_USING_ARM_LIBC', 'RT_USING_LIBC']
|
|
|
|
if rtconfig.PLATFORM in ['armcc', 'armclang']:
|
|
group = DefineGroup('Compiler', src, depend = [''], CPPDEFINES = CPPDEFINES)
|
|
|
|
Return('group')
|