[libc] Add the first version for AIO.

This commit is contained in:
BernardXiong
2017-12-31 14:49:18 +08:00
parent 4bc082e7cb
commit 1383a97737
4 changed files with 550 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
# RT-Thread building script for component
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [cwd]
group = DefineGroup('aio', src, depend = ['RT_USING_POSIX', 'RT_USING_POSIX_AIO'], CPPPATH = CPPPATH)
Return('group')