summaryrefslogtreecommitdiffstats
path: root/fluent-bit/lib/wasm-micro-runtime-WAMR-1.2.2/core/iwasm/aot/SConscript
blob: 790f28404135b93a46e0764433f3d4a6fc43d9f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#
# Copyright (c) 2021, RT-Thread Development Team
#
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#

from building import *
import re
Import('rtconfig')

cwd     = GetCurrentDir()

src = Split('''
aot_loader.c
aot_runtime.c
aot_intrinsic.c
''')

if rtconfig.ARCH == 'arm':
    if re.match('^cortex-m.*', rtconfig.CPU):
        src += ['arch/aot_reloc_thumb.c']
    elif re.match('^cortex-a.*', rtconfig.CPU):
        src += ['arch/aot_reloc_arm.c']
elif rtconfig.ARCH == 'ia32':
    src += ['arch/aot_reloc_x86_32.c']

CPPPATH = [cwd, cwd + '/../include']

CPPDEFINES = ['WASM_ENABLE_AOT=1']

group = DefineGroup('iwasm_aot', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES)

Return('group')