rt-thread/components/libc/compilers/newlib/SConscript

31 lines
840 B
Python
Raw Normal View History

import os
from building import *
from gcc import *
2017-10-13 12:44:54 +08:00
Import('rtconfig')
2021-02-23 03:21:16 +08:00
src = []
cwd = GetCurrentDir()
2017-10-13 12:44:54 +08:00
group = []
2022-04-08 23:15:27 +08:00
LIBS = []
CPPPATH = [cwd]
if rtconfig.PLATFORM in ['gcc']:
2022-04-08 23:15:27 +08:00
LIBS += ['c', 'm'] # link libc and libm
2021-12-26 22:41:24 +08:00
src += Glob('*.c')
2021-02-23 03:21:16 +08:00
#report newlib version
print('Newlib version:' + GetNewLibVersion(rtconfig))
# identify this is Newlib, and only enable POSIX.1-1990
CPPDEFINES = ['RT_USING_NEWLIBC', 'RT_USING_LIBC', '_POSIX_C_SOURCE=1']
AddDepend(['RT_USING_NEWLIBC', 'RT_USING_LIBC'])
2021-12-29 12:25:16 +08:00
group = DefineGroup('Compiler', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
Return('group')