mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-08 16:05:07 +00:00
25 lines
418 B
Python
25 lines
418 B
Python
![]() |
#
|
||
|
# Copyright (c) 2021, RT-Thread Development Team
|
||
|
#
|
||
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
||
|
#
|
||
|
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
#src = Split('''
|
||
|
#libc_builtin_wrapper.c
|
||
|
#''')
|
||
|
|
||
|
src = Glob('*.c')
|
||
|
|
||
|
CPPDEFINES = ['WASM_ENABLE_LIBC_BUILTIN=1']
|
||
|
|
||
|
CPPPATH = [cwd]
|
||
|
|
||
|
|
||
|
group = DefineGroup('iwasm_libc_builtin', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)
|
||
|
|
||
|
Return('group')
|