Skip to content

Commit 4b63fc6

Browse files
committed
npm: @pybricks/mpy-cross-v5
Since merging upsteam MicroPython, the mpy-cross ABI version has changed, so we need to change the package name.
1 parent 4de3545 commit 4b63fc6

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

npm/mpy-cross/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ SRC = $(addprefix $(MICROPYTHON_DIR)/, \
88
py/nlrx86.c \
99
py/nlrx64.c \
1010
py/nlrthumb.c \
11+
py/nlrpowerpc.c \
1112
py/nlrxtensa.c \
1213
py/nlrsetjmp.c \
1314
py/malloc.c \
@@ -38,6 +39,7 @@ SRC = $(addprefix $(MICROPYTHON_DIR)/, \
3839
py/asmxtensa.c \
3940
py/emitnxtensa.c \
4041
py/emitinlinextensa.c \
42+
py/emitnxtensawin.c \
4143
py/formatfloat.c \
4244
py/parsenumbase.c \
4345
py/parsenum.c \
@@ -47,9 +49,12 @@ SRC = $(addprefix $(MICROPYTHON_DIR)/, \
4749
py/runtime_utils.c \
4850
py/scheduler.c \
4951
py/nativeglue.c \
52+
py/pairheap.c \
53+
py/ringbuf.c \
5054
py/stackctrl.c \
5155
py/argcheck.c \
5256
py/warning.c \
57+
py/profile.c \
5358
py/map.c \
5459
py/obj.c \
5560
py/objarray.c \
@@ -117,6 +122,7 @@ SRC = $(addprefix $(MICROPYTHON_DIR)/, \
117122
py/frozenmod.c \
118123
mpy-cross/main.c \
119124
mpy-cross/gccollect.c \
125+
lib/utils/gchelper_generic.c \
120126
)
121127

122128
MPY_CROSS_BUILD := $(MICROPYTHON_DIR)/mpy-cross/build

npm/mpy-cross/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@pybricks/mpy-cross-v4",
3-
"version": "1.1.1",
2+
"name": "@pybricks/mpy-cross-v5",
3+
"version": "1.0.0",
44
"description": "MicroPython mpy-cross tool compiled to WebAssembly",
55
"main": "./build/index.js",
66
"types": "./build/index.d.ts",

0 commit comments

Comments
 (0)