Skip to content

Commit 09ee735

Browse files
committed
Remove RV32 patch
Signed-off-by: Volodymyr Shymanskyy <[email protected]>
1 parent c34c55f commit 09ee735

File tree

4 files changed

+2
-808
lines changed

4 files changed

+2
-808
lines changed

.github/workflows/build.yml

-5
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ jobs:
3636
sudo apt install build-essential gcc-multilib gcc-arm-none-eabi
3737
sudo apt install gcc-riscv64-unknown-elf picolibc-riscv64-unknown-elf
3838
39-
- name: Add RV32 support
40-
run: |
41-
cd ./tools/micropython-mpy-ld-link-archives
42-
patch -p1 < ../../rv32.patch
43-
4439
- name: Run builds
4540
run: |
4641
export PATH=$PWD/tools/xtensa-lx106-elf/bin:$PATH

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ ifeq ($(ARCH),xtensa)
2222
SRC += runtime/esp8266-rom.S
2323
endif
2424

25-
MICROPY_LINK_RUNTIME = 1
25+
LINK_RUNTIME = 1
2626

2727
# Wasm module to build
2828
WASM ?= test/$(APP).wasm

runtime/wasm-rt-mem-impl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
// TODO: Support Custom Page Sizes
2323
// https://github.com/WebAssembly/wabt/issues/2019#issuecomment-2308930257
24-
#define WASM_PAGE_SIZE 65536
24+
#define WASM_PAGE_SIZE (64*1024)
2525

2626
#ifdef WASM_RT_GROW_FAILED_HANDLER
2727
extern void WASM_RT_GROW_FAILED_HANDLER();

0 commit comments

Comments
 (0)