[libc][posix] move libc.c/.h to posix folder

This commit is contained in:
Meco Man
2021-10-28 02:48:51 -04:00
parent da1cc99fe2
commit 7b43cf9793
18 changed files with 82 additions and 302 deletions

View File

@@ -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']