[newlib] 处理newlib版本不一致导致的问题

This commit is contained in:
Meco Man
2021-12-29 12:10:02 +08:00
committed by Bernard Xiong
parent 78fa23bebe
commit 29b73ecb6f
9 changed files with 46 additions and 32 deletions
@@ -1,4 +1,6 @@
import os
from building import *
from gcc import *
Import('rtconfig')
src = []
@@ -14,9 +16,19 @@ if rtconfig.PLATFORM == 'gcc':
else:
src += ['syscalls.c']
#report newlib version
print('Newlib version:' + GetNewLibVersion(rtconfig))
# identify this is Newlib, and only enable POSIX.1-1990
CPPDEFINES = ['RT_USING_NEWLIB', '_POSIX_C_SOURCE=1']
group = DefineGroup('libc', 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')