소스 검색

Signed-off-by: mysterywolf

mysterywolf 4 년 전
부모
커밋
28e0c99d00
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 3 3
      components/libc/compilers/common/SConscript

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

@@ -8,13 +8,13 @@ group = []
 CPPPATH = [cwd]
 
 if GetDepend('RT_USING_LIBC'):
-        src += Glob('*.c')
+        src += Glob('*.c')      
+        if GetDepend('RT_USING_POSIX') == False:
+                SrcRemove(src, ['unistd.c'])
 else:
         if GetDepend('RT_LIBC_USING_TIME') and not GetDepend('RT_USING_MINILIBC'):
                 src += ['time.c']
 
-if GetDepend('RT_USING_POSIX') == False:
-        SrcRemove(src, ['unistd.c'])
 
 if not GetDepend('RT_USING_MINILIBC') and (GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME')):
 	group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH)