解决minilibc time.c和newlibc仅定义RT_LIBC_USING_TIME时冲突的问题

This commit is contained in:
mysterywolf 2020-09-08 11:12:56 +08:00
parent f021cb982a
commit 0607ff84ab
1 changed files with 1 additions and 1 deletions

View File

@ -10,7 +10,7 @@ CPPPATH = [cwd]
if GetDepend('RT_USING_LIBC'):
src += Glob('*.c')
else:
if GetDepend('RT_LIBC_USING_TIME'):
if GetDepend('RT_LIBC_USING_TIME') and not GetDepend('RT_USING_MINILIBC'):
src += ['time.c']
if GetDepend('RT_USING_POSIX') == False: