mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
34 lines
849 B
Python
34 lines
849 B
Python
#
|
|
# Copyright (c) 2021, RT-Thread Development Team
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
|
|
# for module compiling
|
|
import os
|
|
|
|
from building import *
|
|
|
|
objs = []
|
|
cwd = GetCurrentDir()
|
|
list = os.listdir(cwd)
|
|
|
|
if GetDepend(['PKG_USING_WAMR']):
|
|
wamr_entry_sconscript = os.path.join(cwd, "product-mini", "platforms", "rt-thread", 'SConscript')
|
|
|
|
if os.path.isfile(wamr_entry_sconscript):
|
|
objs = objs + SConscript(wamr_entry_sconscript)
|
|
else:
|
|
print("[WAMR] entry script wrong:", wamr_entry_sconscript)
|
|
Return('objs')
|
|
|
|
wamr_runlib_sconsript = os.path.join(cwd, "build-scripts", 'SConscript')
|
|
|
|
if os.path.isfile(wamr_runlib_sconsript):
|
|
objs = objs + SConscript(wamr_runlib_sconsript)
|
|
else:
|
|
print("[WAMR] runtime lib script wrong:", wamr_runlib_sconsript)
|
|
|
|
Return('objs')
|
|
|