8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93819c7 commit 4b1e550Copy full SHA for 4b1e550
py/py.mk
@@ -101,7 +101,18 @@ endif
101
# py object files
102
PY_O_BASENAME = \
103
mpstate.o \
104
- nlrsetjmp.o \
+
105
+# these object files can only be built if we're not using emscripten, since
106
+# the input files necessary to build them are ASM files.
107
+ifneq ($(EMSCRIPTEN), 1)
108
+PY_O_BASENAME += nlrx86.o \
109
+ nlrx64.o \
110
+ nlrthumb.o \
111
+ nlrxtensa.o \
112
113
+endif
114
115
+PY_O_BASENAME += nlrsetjmp.o \
116
malloc.o \
117
gc.o \
118
qstr.o \
0 commit comments