2021-12-23 08:21:52 +08:00
|
|
|
import os
|
2011-10-08 21:02:22 +08:00
|
|
|
from building import *
|
2021-12-23 08:21:52 +08:00
|
|
|
from gcc import *
|
2017-10-13 12:44:54 +08:00
|
|
|
Import('rtconfig')
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2021-02-23 03:21:16 +08:00
|
|
|
src = []
|
2011-10-08 21:02:22 +08:00
|
|
|
cwd = GetCurrentDir()
|
2017-10-13 12:44:54 +08:00
|
|
|
group = []
|
2021-10-28 14:48:51 +08:00
|
|
|
LIBS = ['m'] # link libm
|
2011-10-08 21:02:22 +08:00
|
|
|
CPPPATH = [cwd]
|
2013-01-11 15:13:11 +08:00
|
|
|
|
2021-12-23 07:57:16 +08:00
|
|
|
if rtconfig.PLATFORM == 'gcc':
|
2021-02-23 03:21:16 +08:00
|
|
|
if GetDepend('RT_USING_LIBC'):
|
2021-10-28 14:48:51 +08:00
|
|
|
LIBS += ['c'] # link libc
|
2021-02-23 03:21:16 +08:00
|
|
|
src += Glob('*.c')
|
|
|
|
else:
|
2021-09-26 02:56:10 +08:00
|
|
|
src += ['syscalls.c']
|
2021-02-23 03:21:16 +08:00
|
|
|
|
2021-12-23 08:21:52 +08:00
|
|
|
#report newlib version
|
|
|
|
print('Newlib version:' + GetNewLibVersion(rtconfig))
|
|
|
|
|
2021-12-17 15:34:17 +08:00
|
|
|
# identify this is Newlib, and only enable POSIX.1-1990
|
|
|
|
CPPDEFINES = ['RT_USING_NEWLIB', '_POSIX_C_SOURCE=1']
|
|
|
|
|
2021-02-23 03:21:16 +08:00
|
|
|
group = DefineGroup('libc', src, depend = [], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES, LIBS = LIBS)
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2021-12-23 08:21:52 +08:00
|
|
|
|
|
|
|
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'))
|
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
Return('group')
|