Browse Source

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

mysterywolf 4 years ago
parent
commit
0607ff84ab
1 changed files with 1 additions and 1 deletions
  1. 1 1
      components/libc/compilers/common/SConscript

+ 1 - 1
components/libc/compilers/common/SConscript

@@ -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: