add porting codes of rt-thread (#494)

This commit is contained in:
alvkeke
2021-01-14 11:26:35 +08:00
committed by GitHub
parent 8a477786f1
commit 8ec03a5165
23 changed files with 1294 additions and 1 deletions

View File

@ -0,0 +1,20 @@
#
# Copyright (c) 2021, RT-Thread Development Team
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#
from building import *
cwd = GetCurrentDir()
src = Split('''
libc_pthread_wrapper.c
''')
CPPPATH = [cwd]
group = DefineGroup('iwasm_libc_pthread', src, depend = [''], CPPPATH = CPPPATH)
Return('group')