Skip to content
Open
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ env:
CCACHE_DIR: /tmp/.ccache
CCACHE_CACHE_NUMBER: 0
FORCE_COLOR: 3
DEFAULT_CROSS_BUILD_ENV_URL: https://github.com/pyodide/pyodide-build-environment-nightly/releases/download/20260722-abi_2026_5/xbuildenv.tar.bz2

jobs:
check-scipy-test-trigger:
Expand Down
1 change: 1 addition & 0 deletions packages/healpy/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ source:
- patches/0001-build-no-binaries.patch
- patches/0002-without-zlib-check-fortran.patch
- patches/0003-install-path.patch
- patches/0004-disable-openmp.patch
requirements:
host:
- libzlib
Expand Down
15 changes: 15 additions & 0 deletions packages/healpy/patches/0004-disable-openmp.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
Emscripten 6 added OpenMP support, so autoconf's AC_OPENMP check now succeeds
and healpix_cxx's configure appends -fopenmp to CFLAGS/CXXFLAGS. On Emscripten
`-fopenmp` implies pthreads which is causes a link error.

diff --git a/setup.py b/setup.py
--- a/setup.py
+++ b/setup.py
@@ -173,6 +173,7 @@
"--disable-maintainer-mode",
"--without-zlib-check",
"--without-fortran",
+ "--disable-openmp",
]

log.info("%s", " ".join(cmd))
1 change: 0 additions & 1 deletion packages/matplotlib/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ source:
- patches/0002-Hardcode-font-cache-path.patch
- patches/0003-Pyodide-webagg-backend.patch
- patches/0004-Fix-32bit-casting.patch
- patches/0005-Use-system-freetype.patch

build:
backend-flags: |
Expand Down
30 changes: 0 additions & 30 deletions packages/matplotlib/patches/0005-Use-system-freetype.patch

This file was deleted.