-
Notifications
You must be signed in to change notification settings - Fork 784
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up CI for wasm32-emscripten target (#2436)
* ci: test on emscripten target This adds CI to build libpython3.11 for wasm32-emscripten and running tests against it. We need to patch instant to work around the emscripten_get_now: sebcrozet/instant#47 We also have to patch emscripten to work aroung the "undefined symbol gxx_personality_v0" error: emscripten-core/emscripten#17128 I set up a nox file to download and install emscripten, download and build cpython, set appropriate environment variables then run cargo test. The workflow just installs python, rust, node, and nox and runs the nox session. I xfailed all the test failures. There are problems with datetime. iter_dict_nosegv and test_filenotfounderror should probably be fixable. The tests that involve threads or asyncio probably can't be fixed. * Some cleanup * Remove instant patch * Add explanations for xfails
- Loading branch information
Showing
16 changed files
with
246 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
CURDIR=$(abspath .) | ||
|
||
# These three are passed in from nox. | ||
BUILDROOT ?= $(CURDIR)/builddir | ||
PYMAJORMINORMICRO ?= 3.11.0 | ||
PYPRERELEASE ?= b1 # I'm not sure how to split 3.11.0b1 in Make. | ||
|
||
EMSCRIPTEN_VERSION=3.1.13 | ||
|
||
export EMSDKDIR = $(BUILDROOT)/emsdk | ||
|
||
PLATFORM=wasm32_emscripten | ||
SYSCONFIGDATA_NAME=_sysconfigdata__$(PLATFORM) | ||
|
||
# BASH_ENV tells bash to source emsdk_env.sh on startup. | ||
export BASH_ENV := $(CURDIR)/env.sh | ||
# Use bash to run each command so that env.sh will be used. | ||
SHELL := /bin/bash | ||
|
||
|
||
# Set version variables. | ||
version_tuple := $(subst ., ,$(PYMAJORMINORMICRO:v%=%)) | ||
PYMAJOR=$(word 1,$(version_tuple)) | ||
PYMINOR=$(word 2,$(version_tuple)) | ||
PYMICRO=$(word 3,$(version_tuple)) | ||
PYVERSION=$(PYMAJORMINORMICRO)$(PYPRERELEASE) | ||
PYMAJORMINOR=$(PYMAJOR).$(PYMINOR) | ||
|
||
|
||
PYTHONURL=https://www.python.org/ftp/python/$(PYMAJORMINORMICRO)/Python-$(PYVERSION).tgz | ||
PYTHONTARBALL=$(BUILDROOT)/downloads/Python-$(PYVERSION).tgz | ||
PYTHONBUILD=$(BUILDROOT)/build/Python-$(PYVERSION) | ||
|
||
PYTHONLIBDIR=$(BUILDROOT)/install/Python-$(PYVERSION)/lib | ||
|
||
all: $(PYTHONLIBDIR)/libpython$(PYMAJORMINOR).a | ||
|
||
$(BUILDROOT)/.exists: | ||
mkdir -p $(BUILDROOT) | ||
touch $@ | ||
|
||
|
||
# Install emscripten | ||
$(EMSDKDIR): $(CURDIR)/emscripten_patches/* $(BUILDROOT)/.exists | ||
git clone https://github.com/emscripten-core/emsdk.git --depth 1 --branch $(EMSCRIPTEN_VERSION) $(EMSDKDIR) | ||
$(EMSDKDIR)/emsdk install $(EMSCRIPTEN_VERSION) | ||
cd $(EMSDKDIR)/upstream/emscripten && cat $(CURDIR)/emscripten_patches/* | patch -p1 | ||
$(EMSDKDIR)/emsdk activate $(EMSCRIPTEN_VERSION) | ||
|
||
|
||
$(PYTHONTARBALL): | ||
[ -d $(BUILDROOT)/downloads ] || mkdir -p $(BUILDROOT)/downloads | ||
wget -q -O $@ $(PYTHONURL) | ||
|
||
$(PYTHONBUILD)/.patched: $(PYTHONTARBALL) | ||
[ -d $(PYTHONBUILD) ] || ( \ | ||
mkdir -p $(dir $(PYTHONBUILD));\ | ||
tar -C $(dir $(PYTHONBUILD)) -xf $(PYTHONTARBALL) \ | ||
) | ||
touch $@ | ||
|
||
$(PYTHONBUILD)/Makefile: $(PYTHONBUILD)/.patched $(BUILDROOT)/emsdk | ||
cd $(PYTHONBUILD) && \ | ||
CONFIG_SITE=Tools/wasm/config.site-wasm32-emscripten \ | ||
emconfigure ./configure -C \ | ||
--host=wasm32-unknown-emscripten \ | ||
--build=$(shell $(PYTHONBUILD)/config.guess) \ | ||
--with-emscripten-target=browser \ | ||
--enable-wasm-dynamic-linking \ | ||
--with-build-python=python3.11 | ||
|
||
$(PYTHONLIBDIR)/libpython$(PYMAJORMINOR).a : $(PYTHONBUILD)/Makefile | ||
cd $(PYTHONBUILD) && \ | ||
emmake make -j3 libpython$(PYMAJORMINOR).a | ||
|
||
# Generate sysconfigdata | ||
_PYTHON_SYSCONFIGDATA_NAME=$(SYSCONFIGDATA_NAME) _PYTHON_PROJECT_BASE=$(PYTHONBUILD) python3.11 -m sysconfig --generate-posix-vars | ||
cp `cat pybuilddir.txt`/$(SYSCONFIGDATA_NAME).py $(PYTHONBUILD)/Lib | ||
|
||
mkdir -p $(PYTHONLIBDIR) | ||
# Copy libexpat.a, libmpdec.a, and libpython3.11.a | ||
# In noxfile, we explicitly link libexpat and libmpdec via RUSTFLAGS | ||
find $(PYTHONBUILD) -name '*.a' -exec cp {} $(PYTHONLIBDIR) \; | ||
# Install Python stdlib | ||
cp -r $(PYTHONBUILD)/Lib $(PYTHONLIBDIR)/python$(PYMAJORMINOR) | ||
|
||
clean: | ||
rm -rf $(BUILDROOT) |
28 changes: 28 additions & 0 deletions
28
emscripten/emscripten_patches/0001-Add-_gxx_personality_v0-stub-to-library.js.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
From 4b56f37c3dc9185a235a8314086c4d7a6239b2f8 Mon Sep 17 00:00:00 2001 | ||
From: Hood Chatham <roberthoodchatham@gmail.com> | ||
Date: Sat, 4 Jun 2022 19:19:47 -0700 | ||
Subject: [PATCH] Add _gxx_personality_v0 stub to library.js | ||
|
||
Mitigation for an incompatibility between Rust and Emscripten: | ||
https://github.com/rust-lang/rust/issues/85821 | ||
https://github.com/emscripten-core/emscripten/issues/17128 | ||
--- | ||
src/library.js | 2 ++ | ||
1 file changed, 2 insertions(+) | ||
|
||
diff --git a/src/library.js b/src/library.js | ||
index e7bb4c38e..7d01744df 100644 | ||
--- a/src/library.js | ||
+++ b/src/library.js | ||
@@ -403,6 +403,8 @@ mergeInto(LibraryManager.library, { | ||
abort('Assertion failed: ' + UTF8ToString(condition) + ', at: ' + [filename ? UTF8ToString(filename) : 'unknown filename', line, func ? UTF8ToString(func) : 'unknown function']); | ||
}, | ||
|
||
+ __gxx_personality_v0: function() {}, | ||
+ | ||
// ========================================================================== | ||
// time.h | ||
// ========================================================================== | ||
-- | ||
2.25.1 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# Activate emsdk environment. emsdk_env.sh writes a lot to stderr so we suppress | ||
# the output. This also prevents it from complaining when emscripten isn't yet | ||
# installed. | ||
source "$EMSDKDIR/emsdk_env.sh" 2> /dev/null || true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
build/lib.linux-x86_64-3.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/local/bin/python | ||
import pathlib | ||
import sys | ||
import subprocess | ||
|
||
p = pathlib.Path(sys.argv[1]) | ||
|
||
sys.exit(subprocess.call(["node", p.name], cwd=p.parent)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters