mirror of https://github.com/pyodide/pyodide.git
Do no build CLAPACK if PYODIDE_PACKAGES is defined
This commit is contained in:
parent
1fcf5a88f8
commit
f3f596f0c1
9
Makefile
9
Makefile
|
@ -242,7 +242,14 @@ $(PARSO_LIBS): $(CPYTHONLIB)
|
|||
|
||||
|
||||
$(CLAPACK): $(CPYTHONLIB)
|
||||
make -C CLAPACK
|
||||
ifdef PYODIDE_PACKAGES
|
||||
echo "Skipping BLAS/LAPACK build due to PYODIDE_PACKAGES being defined."
|
||||
echo "Build it manually with make -C CLAPACK if needed."
|
||||
touch $(CLAPACK)
|
||||
else
|
||||
make -C CLAPACK
|
||||
endif
|
||||
|
||||
|
||||
|
||||
build/packages.json: $(CLAPACK) FORCE
|
||||
|
|
|
@ -21,3 +21,6 @@ exactly; in particular they are case sensitive.
|
|||
To build a minimal version of pyodide, set `PYODIDE_PACKAGES="micropip"`. The
|
||||
micropip and package is generally always included for any non empty value of
|
||||
`PYODIDE_PACKAGES`.
|
||||
|
||||
If scipy is included in `PYODIDE_PACKAGES`, BLAS/LAPACK must be manually built
|
||||
first with `make -c CLAPACK`.
|
||||
|
|
Loading…
Reference in New Issue