Skip to content

Commit c62d943

Browse files
committed
improve README.md, from review
1 parent 7181789 commit c62d943

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

.github/workflows/windows.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
echo "BUILD_BITS=32" >> $env:GITHUB_ENV
4848
} else {
4949
echo "PLAT=x86_64" >> $env:GITHUB_ENV
50-
echo "WHEEL_PLAT=x86_64" >> $env:GITHUB_ENV
50+
echo "WHEEL_PLAT=win_amd64" >> $env:GITHUB_ENV
5151
echo "MSYSTEM=UCRT64" >> $env:GITHUB_ENV
5252
echo "LDFLAGS=-lucrt -static -static-libgcc" >> $env:GITHUB_ENV
5353
echo "BUILD_BITS=64" >> $env:GITHUB_ENV

README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ A project using the tarball, for Manylinux or macOS, will need the
1010
``gfortran-install`` submodule used here, from
1111
https://github.com/MacPython/gfortran-install
1212

13-
We also build and upload a pip-installable wheel. The wheel is self-contianed,
14-
no additional fortran support installations are needed. The wheel supplies
15-
interfaces for building and using OpenBLAS in a python project like SciPy or
16-
NumPy:
13+
We also build and upload a pip-installable wheel. The wheel is self-contained,
14+
it includes all needed gfortran support libraries. On windows, this is a single
15+
DLL. On linux we use `auditwheel repair` to mangle the shared object names.
16+
17+
The wheel supplies interfaces for building and using OpenBLAS in a python
18+
project like SciPy or NumPy:
1719

1820
## Buildtime
1921

@@ -28,6 +30,5 @@ NumPy:
2830

2931
## Runtime
3032

31-
- `open_so()` will load openblas into the executable and provide the openblas
32-
symbols linked in from the `get_include_dir()` includes (on windows linking
33-
with `get_lib_dir()`/`get_libarary()` is required).
33+
- importing will load openblas into the executable and provide the openblas
34+
symbols.

0 commit comments

Comments
 (0)