mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-10-20 05:25:04 +08:00
[libc][posix] move libc.c/.h to posix folder
This commit is contained in:
@@ -4,21 +4,14 @@ Import('rtconfig')
|
||||
src = []
|
||||
cwd = GetCurrentDir()
|
||||
group = []
|
||||
LIBS = ['m']
|
||||
LIBS = ['m'] # link libm
|
||||
CPPDEFINES = ['RT_USING_NEWLIB']
|
||||
CPPPATH = [cwd]
|
||||
|
||||
if rtconfig.PLATFORM == 'gcc':
|
||||
if GetDepend('RT_USING_LIBC'):
|
||||
# link with libc and libm:
|
||||
# libm is a frequently used lib. Newlib is compiled with -ffunction-sections in
|
||||
# recent GCC tool chains. The linker would just link in the functions that have
|
||||
# been referenced. So setting this won't result in bigger text size.
|
||||
LIBS += ['c']
|
||||
|
||||
LIBS += ['c'] # link libc
|
||||
src += Glob('*.c')
|
||||
if GetDepend('RT_USING_MODULE') == False:
|
||||
SrcRemove(src, ['libc_syms.c'])
|
||||
else:
|
||||
src += ['syscalls.c']
|
||||
|
||||
|
Reference in New Issue
Block a user