Skip to content

Commit 1b11835

Browse files
authored
gh-145176 Move Emscripten files into Platforms/emscripten (#145806)
Moves Emscripten build files into Platforms/emscripten.
1 parent 104cae0 commit 1b11835

File tree

22 files changed

+763
-741
lines changed

22 files changed

+763
-741
lines changed

Makefile.pre.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1103,7 +1103,7 @@ $(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)
11031103

11041104
# wasm32-emscripten browser web example
11051105

1106-
EMSCRIPTEN_DIR=$(srcdir)/Tools/wasm/emscripten
1106+
EMSCRIPTEN_DIR=$(srcdir)/Platforms/emscripten
11071107
WEBEX_DIR=$(EMSCRIPTEN_DIR)/web_example/
11081108

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

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

31793179
JIT_DEPS = \
31803180
$(srcdir)/Tools/jit/*.c \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ After building, you can run the full test suite with:
3535
```
3636
You can run the browser smoke test with:
3737
```shell
38-
./Tools/wasm/emscripten/browser_test/run_test.sh
38+
./Platforms/emscripten/browser_test/run_test.sh
3939
```
4040

4141
### The Web Example

0 commit comments

Comments
 (0)