We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28e0c99 commit b3ab8a9Copy full SHA for b3ab8a9
components/libc/compilers/common/SConscript
@@ -9,12 +9,12 @@ CPPPATH = [cwd]
9
10
if GetDepend('RT_USING_LIBC'):
11
src += Glob('*.c')
12
- if GetDepend('RT_USING_POSIX') == False:
13
- SrcRemove(src, ['unistd.c'])
14
else:
15
if GetDepend('RT_LIBC_USING_TIME') and not GetDepend('RT_USING_MINILIBC'):
16
src += ['time.c']
17
+if GetDepend('RT_USING_POSIX') == False:
+ SrcRemove(src, ['unistd.c'])
18
19
if not GetDepend('RT_USING_MINILIBC') and (GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME')):
20
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH)
0 commit comments