[libc] Change libc stubs to compiler folder.

This commit is contained in:
bernard
2017-10-10 17:12:03 +08:00
parent 5c6a6e5db8
commit db88c0b6a2
58 changed files with 4 additions and 0 deletions
@@ -0,0 +1,12 @@
from building import *
src = Glob('*.c')
cwd = GetCurrentDir()
CPPPATH = [cwd]
CPPDEFINES = ['RT_USING_ARM_LIBC']
group = DefineGroup('libc', src, depend = ['RT_USING_LIBC'],
CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
Return('group')