Skip to content

Commit 609d843

Browse files
hoodmanemiss-islington
authored andcommitted
gh-145176 Move Emscripten files into Platforms/emscripten (GH-145806)
Moves Emscripten build files into Platforms/emscripten. (cherry picked from commit 1b11835) Co-authored-by: Hood Chatham <roberthoodchatham@gmail.com>
1 parent 0548f41 commit 609d843

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
@@ -1095,7 +1095,7 @@ $(DLLLIBRARY) libpython$(LDVERSION).dll.a: $(LIBRARY_OBJS)
10951095

10961096
# wasm32-emscripten browser web example
10971097

1098-
EMSCRIPTEN_DIR=$(srcdir)/Tools/wasm/emscripten
1098+
EMSCRIPTEN_DIR=$(srcdir)/Platforms/emscripten
10991099
WEBEX_DIR=$(EMSCRIPTEN_DIR)/web_example/
11001100

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

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

31183118
JIT_DEPS = \
31193119
$(srcdir)/Tools/jit/*.c \
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ After building, you can run the full test suite with:
9292
```
9393
You can run the browser smoke test with:
9494
```shell
95-
./Tools/wasm/emscripten/browser_test/run_test.sh
95+
./Platforms/emscripten/browser_test/run_test.sh
9696
```
9797

9898
### The Web Example

0 commit comments

Comments
 (0)