We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6431fe7 commit fd3a52bCopy full SHA for fd3a52b
numpy/_core/meson.build
@@ -96,10 +96,7 @@ if use_svml
96
endif
97
98
99
-use_highway = not get_option('disable-highway') and not (
100
- host_machine.system() == 'darwin' and
101
- cpu_family == 'aarch64'
102
-)
+use_highway = not get_option('disable-highway')
103
if use_highway and not fs.exists('src/highway/README.md')
104
error('Missing the `highway` git submodule! Run `git submodule update --init` to fix this.')
105
@@ -108,7 +105,7 @@ if use_highway
108
highway_lib = static_library('highway',
109
106
[
110
107
# required for hwy::Abort symbol
111
- 'src/highway/hwy/targets.cc'
+ 'src/highway/hwy/abort.cc'
112
],
113
cpp_args: '-DTOOLCHAIN_MISS_ASM_HWCAP_H',
114
include_directories: ['src/highway'],
numpy/_core/src/highway
0 commit comments