更改libc目录为common 以及 none-gcc
This commit is contained in:
parent
c871726e89
commit
f9ba41f4c2
|
@ -1,15 +1,27 @@
|
||||||
# RT-Thread building script for bridge
|
|
||||||
|
|
||||||
import os
|
|
||||||
from building import *
|
from building import *
|
||||||
|
|
||||||
cwd = GetCurrentDir()
|
Import('rtconfig')
|
||||||
objs = []
|
|
||||||
list = os.listdir(cwd)
|
|
||||||
|
|
||||||
for d in list:
|
src = []
|
||||||
path = os.path.join(cwd, d)
|
cwd = GetCurrentDir()
|
||||||
if os.path.isfile(os.path.join(path, 'SConscript')):
|
group = []
|
||||||
objs = objs + SConscript(os.path.join(d, 'SConscript'))
|
CPPPATH = [cwd]
|
||||||
|
|
||||||
Return('objs')
|
if GetDepend('RT_USING_LIBC'):
|
||||||
|
src += Glob('*.c')
|
||||||
|
else:
|
||||||
|
if GetDepend('RT_LIBC_USING_TIME'):
|
||||||
|
src += ['time.c']
|
||||||
|
|
||||||
|
if GetDepend('RT_USING_POSIX') == False:
|
||||||
|
SrcRemove(src, ['unistd.c'])
|
||||||
|
|
||||||
|
if rtconfig.CROSS_TOOL == 'keil':
|
||||||
|
CPPDEFINES = ['__CLK_TCK=RT_TICK_PER_SECOND']
|
||||||
|
else:
|
||||||
|
CPPDEFINES = []
|
||||||
|
|
||||||
|
if GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME'):
|
||||||
|
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||||||
|
|
||||||
|
Return('group')
|
||||||
|
|
|
@ -1,27 +0,0 @@
|
||||||
from building import *
|
|
||||||
|
|
||||||
Import('rtconfig')
|
|
||||||
|
|
||||||
src = []
|
|
||||||
cwd = GetCurrentDir()
|
|
||||||
group = []
|
|
||||||
CPPPATH = [cwd]
|
|
||||||
|
|
||||||
if GetDepend('RT_USING_LIBC'):
|
|
||||||
src += Glob('*.c')
|
|
||||||
else:
|
|
||||||
if GetDepend('RT_LIBC_USING_TIME'):
|
|
||||||
src += ['time.c']
|
|
||||||
|
|
||||||
if GetDepend('RT_USING_POSIX') == False:
|
|
||||||
SrcRemove(src, ['unistd.c'])
|
|
||||||
|
|
||||||
if rtconfig.CROSS_TOOL == 'keil':
|
|
||||||
CPPDEFINES = ['__CLK_TCK=RT_TICK_PER_SECOND']
|
|
||||||
else:
|
|
||||||
CPPDEFINES = []
|
|
||||||
|
|
||||||
if GetDepend('RT_USING_LIBC') or GetDepend('RT_LIBC_USING_TIME'):
|
|
||||||
group = DefineGroup('libc', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
|
||||||
|
|
||||||
Return('group')
|
|
Loading…
Reference in New Issue