8000 DOC: update code comment about `NPY_USE_BLAS_ILP64` environment variable by rgommers · Pull Request #24289 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

DOC: update code comment about NPY_USE_BLAS_ILP64 environment variable #24289

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jul 30, 2023
Merged
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
DOC: update code comment about NPY_USE_BLAS_ILP64 environment variable
As suggested by Chuck in a review comment on a previous PR. Sending as a
separate follow-up also because it helps to check Cirrus CI triggering
which we are looking at in issue 24280.

[skip azp] [skip circle] [skip actions] [skip travis]
  • Loading branch information
rgommers committed Jul 30, 2023
commit bbc3bdb701d93077b0810a39742c1454e40dd9d0
5 changes: 3 additions & 2 deletions numpy/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,9 @@ blas_symbol_suffix = get_option('blas-symbol-suffix')

use_ilp64 = get_option('use-ilp64')
if not use_ilp64
# For now, keep supporting this environment variable too (same as in setup.py)
# `false is the default for the CLI flag, so check if env var was set
# For now, keep supporting the `NPY_USE_BLAS_ILP64` environment variable too
# (same as in setup.py) `false is the default for the CLI flag, so check if
# env var was set
use_ilp64 = run_command(py,
[
'-c',
Expand Down
0