Build libiwasm in debug/release configuration

This commit is contained in:
2026-03-11 16:18:31 +01:00
parent 7a4bf17670
commit 64a7098112
3 changed files with 79 additions and 24 deletions

View File

@ -1,5 +1,6 @@
WASI_ROOT := /opt/wasi-sdk
WAMR := /opt/wamr
OPT := -O3
################################################################
# C -> WASM
@ -34,7 +35,7 @@ ${BUILD_DIR}/%/module.wasm: %.c
# ${CC} ${LDFLAGS} -o $@
################################################################
# WASM -> AOT -> Loaded by Runtime (FAIL)
# WASM -> AOT
WAMRC := /opt/wamr-wamrc/wamrc
WAMRCFLAGS := \
@ -50,19 +51,23 @@ XXD := busybox xxd
${BUILD_DIR}/%/module_wasm.c: ${BUILD_DIR}/%/module.aot
${XXD} -i $< > $@
################################################################
# WASM loaded by Runtime (FAIL+Baremetal platform)
# NOTE: make build-sum: "error: bp cannot be used in asm here"
# could remove "ebp" from the clobber list (ARCH_ASM_CLOBBER_ALL) or
# use the -fomit-frame-pointer flag to tell gcc it shouldn't rely on ebp for enter/leave...
CC := /opt/crosscompiler/bin/i386-elf-gcc
CFLAGS := \
-I. \
-O2 \
${OPT} \
-m32 \
-ffunction-sections \
-ffreestanding \
-fomit-frame-pointer \
-ggdb
IWASM_LIB := /opt/wamr-libiwasm # Baremetal
IWASM_LIB_DEBUG := /opt/wamr-libiwasm-baremetal-debug
IWASM_LIB_RELEASE := /opt/wamr-libiwasm-baremetal-release
LDFLAGS = \
-Wl,-T linker.ld \
$^ \
@ -70,7 +75,7 @@ LDFLAGS = \
-static \
-nostdlib \
-m32 \
-L${IWASM_LIB} \
-L${IWASM_LIB_RELEASE} \
-liwasm \
-lc \
-lgcc \
@ -99,23 +104,24 @@ ${BUILD_DIR}/%/system.elf: ${BUILD_DIR}/%/system.o ${BUILD_DIR}/syscalls.o ${BUI
${CC} ${LDFLAGS} -o $@
################################################################
# WASM -> AOT -> Loaded by Runtime (Host/Linux platform)
# WASM loaded by Runtime (Host+Linux platform)
CC_LINUX := gcc
CFLAGS_LINUX := \
-I. \
-O0 \
${OPT} \
-m32 \
-ffunction-sections \
-ggdb
IWASM_LIB_LINUX := /opt/wamr-libiwasm-linux
IWASM_LIB_LINUX_DEBUG := /opt/wamr-libiwasm-linux-debug
IWASM_LIB_LINUX_RELEASE := /opt/wamr-libiwasm-linux-release
LDFLAGS_LINUX = \
$^ \
-Wl,--build-id=none \
-static \
-m32 \
-Wl,-rpath,${IWASM_LIB_LINUX} \
-L${IWASM_LIB_LINUX} \
-Wl,-rpath,${IWASM_LIB_LINUX_RELEASE} \
-L${IWASM_LIB_LINUX_RELEASE} \
-liwasm \
-lm
INCL_LINUX := \
@ -136,12 +142,12 @@ ${BUILD_DIR}/%/system-linux.elf: ${BUILD_DIR}/%/system-linux.o
${CC_LINUX} ${LDFLAGS_LINUX} -o $@
################################################################
# WASM -> AOT -> Loaded by Runtime (Host/Baremetal platform)
# WASM loaded by Runtime (Host+Baremetal platform)
CC_BAREMETAL := /opt/crosscompiler/bin/i386-elf-gcc
CFLAGS_BAREMETAL := \
-I. \
-O0 \
${OPT} \
-m32 \
-ffunction-sections \
-ffreestanding \