Skip to content

Commit b7249e6

Browse files
Missing meson pass-through argument
The `-C-D` phrase should be `-Csetup-args=-D` in a number of places.
1 parent c46a513 commit b7249e6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/source/building/blas_lapack.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,20 @@ plain ``libblas``/``liblapack``. This may vary per platform or over releases.
1616
That order, and which libraries are tried, can be changed through the
1717
``blas-order`` and ``lapack-order`` build options, for example::
1818

19-
$ python -m pip install . -C-Dblas-order=openblas,mkl,blis -C-Dlapack-order=openblas,mkl,lapack
19+
$ python -m pip install . -Csetup-args=-Dblas-order=openblas,mkl,blis -Csetup-args=-Dlapack-order=openblas,mkl,lapack
2020

2121
The first suitable library that is found will be used. In case no suitable
2222
library is found, the NumPy build will print a warning and then use (slow!)
2323
NumPy-internal fallback routines. In order to disallow use of those slow routines,
2424
the ``allow-noblas`` build option can be used::
2525

26-
$ python -m pip install . -C-Dallow-noblas=false
26+
$ python -m pip install . -Csetup-args=-Dallow-noblas=false
2727

2828
By default the LP64 (32-bit integer) interface to BLAS and LAPACK will be used.
2929
For building against the ILP64 (64-bit integer) interface, one must use the
3030
``use-ilp64`` build option::
3131

32-
$ python -m pip install . -C-Duse-ilp64=true
32+
$ python -m pip install . -Csetup-args=-Duse-ilp64=true
3333

3434

3535
.. _accelerated-blas-lapack-libraries:

0 commit comments

Comments
 (0)