mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-11-16 04:24:33 +00:00
12 lines
250 B
Python
12 lines
250 B
Python
from building import *
|
|
Import('rtconfig')
|
|
|
|
src = []
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd]
|
|
group = []
|
|
|
|
if rtconfig.PLATFORM in ['armcc', 'armclang', 'iccarm']:
|
|
group = DefineGroup('Libc', src, depend = [''], CPPPATH = CPPPATH)
|
|
Return('group')
|