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 ccff7fb commit 3a4e776Copy full SHA for 3a4e776
numpy/_core/config.h.in
@@ -108,6 +108,8 @@
108
#mesondefine HAVE_LDOUBLE_IBM_DOUBLE_DOUBLE_LE
109
#mesondefine HAVE_LDOUBLE_IBM_DOUBLE_DOUBLE_BE
110
111
+#mesondefine HAVE_EXTERNAL_LAPACK
112
+
113
#ifndef __cplusplus
114
/* #undef inline */
115
#endif
numpy/_core/meson.build
@@ -506,6 +506,10 @@ if cc.has_function_attribute('visibility:hidden') and host_machine.system() != '
506
endif
507
cdata.set('NPY_VISIBILITY_HIDDEN', visibility_hidden)
508
509
+# if not set, we're using lapack_lite
510
+if have_lapack
511
+ cdata.set10('HAVE_EXTERNAL_LAPACK', have_blas)
512
+endif
513
514
config_h = configure_file(
515
input: 'config.h.in',
0 commit comments