mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2024-11-26 15:32:05 +00:00
89 lines
2.5 KiB
Python
89 lines
2.5 KiB
Python
#
|
|
# Copyright (c) 2021, RT-Thread Development Team
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
#
|
|
|
|
import os
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
objs = []
|
|
|
|
WAMR_ROOT_DIR = os.path.join(cwd, "..")
|
|
|
|
|
|
SHARED_DIR = os.path.join(WAMR_ROOT_DIR, 'core', 'shared')
|
|
|
|
IWASM_DIR = os.path.join(WAMR_ROOT_DIR, 'core', 'iwasm')
|
|
|
|
APP_MGR_DIR = os.path.join(WAMR_ROOT_DIR, 'core', 'app-mgr')
|
|
|
|
APP_FRAMEWORK_DIR = os.path.join(WAMR_ROOT_DIR, 'core', 'app-framework')
|
|
|
|
DEPS_DIR = os.path.join(WAMR_ROOT_DIR, 'core', 'deps')
|
|
|
|
if GetDepend(['WAMR_BUILD_INTERP']):
|
|
script_path = os.path.join(IWASM_DIR, 'interpreter', 'SConscript')
|
|
objs += SConscript(script_path)
|
|
|
|
|
|
if GetDepend(['WAMR_BUILD_AOT']):
|
|
script_path = os.path.join(IWASM_DIR, 'aot', 'SConscript')
|
|
objs += SConscript(script_path)
|
|
if GetDepend(['WAMR_BUILD_JIT']):
|
|
script_path = os.path.join(IWASM_DIR, 'compilation', 'SConscript')
|
|
objs += SConscript(script_path)
|
|
|
|
|
|
if GetDepend(['WAMR_BUILD_APP_FRAMEWORK']):
|
|
objs += SConscript(os.path.join(APP_FRAMEWORK_DIR, 'SConscript'))
|
|
objs += SConscript(os.path.join(SHARED_DIR, 'coap', 'SConscript'))
|
|
objs += SConscript(os.path.join(APP_MGR_DIR, 'app-manager', 'SConscript'))
|
|
objs += SConscript(os.path.join(APP_MGR_DIR, 'app-mgr-shared', 'SConscript'))
|
|
|
|
|
|
|
|
if GetDepend(['WAMR_BUILD_LIBC_BUILTIN']):
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'libraries', 'libc-builtin', 'SConscript'))
|
|
|
|
|
|
|
|
if GetDepend(['WAMR_BUILD_LIBC_WASI']):
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'libraries', 'libc-wasi', 'SConscript'))
|
|
|
|
|
|
if GetDepend(['WAMR_BUILD_LIB_PTHREAD']):
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'libraries', 'libc-pthread', 'SConscript'))
|
|
# TODO: 这里加一下
|
|
|
|
|
|
|
|
# if (WAMR_BUILD_THREAD_MGR EQUAL 1)
|
|
# include (${IWASM_DIR}/libraries/thread-mgr/thread_mgr.cmake)
|
|
# endif ()
|
|
|
|
if GetDepend(['WAMR_BUILD_THREAD_MGR']):
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'libraries', 'thread-mgr', 'SConscript'))
|
|
|
|
|
|
|
|
# if (WAMR_BUILD_LIBC_EMCC EQUAL 1)
|
|
# include (${IWASM_DIR}/libraries/libc-emcc/libc_emcc.cmake)
|
|
# endif()
|
|
|
|
if GetDepend(['WAMR_BUILD_LIBC_EMCC']):
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'libraries', 'libc-emmc', 'SConscript'))
|
|
|
|
objs += SConscript(os.path.join(cwd, 'SConscript_config'));
|
|
|
|
|
|
objs += SConscript(os.path.join(SHARED_DIR, 'platform', 'rt-thread', 'SConscript'))
|
|
objs += SConscript(os.path.join(SHARED_DIR, 'mem-alloc', 'SConscript'))
|
|
objs += SConscript(os.path.join(IWASM_DIR, 'common', 'SConscript'))
|
|
objs += SConscript(os.path.join(SHARED_DIR, 'utils', 'SConscript'))
|
|
|
|
|
|
|
|
Return('objs')
|