diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-12-14 17:41:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-14 17:41:34 -0500 |
commit | 29255bb76637fbff65f7245cc41b18c984dcb742 (patch) | |
tree | 7dce7060eb6becd781581b3e4d15a8c87e98dcc0 | |
parent | a185f4be433443c9e913217f9662b97a0ac3e9f7 (diff) | |
parent | 0a6463bfd49b04fe642dac80cd54635f7ee631fc (diff) | |
download | numpy-29255bb76637fbff65f7245cc41b18c984dcb742.tar.gz |
Merge pull request #22802 from rgommers/fix-arm64-linkage-issue
BLD: fix issue in npymath on macOS arm64 in the Meson build
-rw-r--r-- | numpy/core/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/core/meson.build b/numpy/core/meson.build index 50cd8ccc5..f4c9f49b5 100644 --- a/numpy/core/meson.build +++ b/numpy/core/meson.build @@ -461,6 +461,9 @@ npymath_sources = [ npy_math_internal_h, 'src/npymath/halffloat.c', 'src/npymath/npy_math.c', + # Remove this `arm64_exports.c` file once scipy macos arm64 build correctly + # links to the arm64 npymath library, see gh-22673 + 'src/npymath/arm64_exports.c', ] npymath_lib = static_library('npymath', npymath_sources, |