[components][libc][compilers][common]拆分armcc和iar的time相关函数到common目录,同时修复原来在使用LIBC时time相关函数的BUG(armcc下使用gmtime、localtime、mktime会导致崩溃)

This commit is contained in:
zhangjun
2019-08-22 15:34:50 +08:00
parent 3383f37f79
commit 3ede7630c0
6 changed files with 358 additions and 258 deletions

View File

@@ -2,11 +2,18 @@ from building import *
Import('rtconfig')
src = Glob('*.c')
src = []
cwd = GetCurrentDir()
group = []
CPPPATH = [cwd]
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'], CPPPATH = CPPPATH)
if GetDepend('RT_USING_LIBC'):
src += Glob('*.c')
else:
if GetDepend('RT_USING_MINI_TIME'):
src += ['time.c']
if (rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'iar') and rtconfig.ARCH != 'sim' :
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH)
Return('group')