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
|
|
|
|
2017-10-13 12:44:54 +08:00
|
|
|
group = []
|
2013-01-11 15:13:11 +08:00
|
|
|
|
2023-04-30 12:19:57 +08:00
|
|
|
newlib_version = GetNewLibVersion(rtconfig)
|
2021-02-23 03:21:16 +08:00
|
|
|
|
2023-04-30 12:19:57 +08:00
|
|
|
if newlib_version and not GetDepend('RT_USING_EXTERNAL_LIBC'):
|
|
|
|
print('Newlib version: ' + newlib_version)
|
2021-12-23 08:21:52 +08:00
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
|
|
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
CPPDEFINES = ['RT_USING_NEWLIBC', 'RT_USING_LIBC', '_POSIX_C_SOURCE=1'] # identify this is Newlib, and only enable POSIX.1-1990
|
|
|
|
LIBS = ['c', 'm'] # link libc and libm
|
2022-10-25 12:01:37 +08:00
|
|
|
AddDepend(['RT_USING_NEWLIBC', 'RT_USING_LIBC'])
|
2011-10-08 21:02:22 +08:00
|
|
|
|
2022-11-23 10:40:50 +08:00
|
|
|
group = 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'))
|
2021-12-23 08:21:52 +08:00
|
|
|
|
2011-10-08 21:02:22 +08:00
|
|
|
Return('group')
|