Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile.pre.in
Original file line number Diff line number Diff line change
Expand Up @@ -1103,7 +1103,7 @@ $(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)

# wasm32-emscripten browser web example

EMSCRIPTEN_DIR=$(srcdir)/Tools/wasm/emscripten
EMSCRIPTEN_DIR=$(srcdir)/Platforms/emscripten
WEBEX_DIR=$(EMSCRIPTEN_DIR)/web_example/

ZIP_STDLIB=python$(VERSION)$(ABI_THREAD).zip
Expand Down Expand Up @@ -3174,7 +3174,7 @@ Python/emscripten_trampoline_inner.wasm: $(srcdir)/Python/emscripten_trampoline_
$$(dirname $$(dirname $(CC)))/bin/clang -o $@ $< -mgc -O2 -Wl,--no-entry -Wl,--import-table -Wl,--import-memory -target wasm32-unknown-unknown -nostdlib

Python/emscripten_trampoline_wasm.c: Python/emscripten_trampoline_inner.wasm
$(PYTHON_FOR_REGEN) $(srcdir)/Tools/wasm/emscripten/prepare_external_wasm.py $< $@ getWasmTrampolineModule
$(PYTHON_FOR_REGEN) $(srcdir)/Platforms/emscripten/prepare_external_wasm.py $< $@ getWasmTrampolineModule

JIT_DEPS = \
$(srcdir)/Tools/jit/*.c \
Expand Down
2 changes: 1 addition & 1 deletion Tools/wasm/README.md → Platforms/emscripten/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ After building, you can run the full test suite with:
```
You can run the browser smoke test with:
```shell
./Tools/wasm/emscripten/browser_test/run_test.sh
./Platforms/emscripten/browser_test/run_test.sh
```

### The Web Example
Expand Down
Loading
Loading