mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-02-07 07:25:12 +00:00
20 lines
319 B
Python
20 lines
319 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_emcc_wrapper.c
|
|
''')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('iwasm_libc_emcc', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|