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 91cede9 commit b2550d1Copy full SHA for b2550d1
numpy/f2py/_backends/meson.build.template
@@ -6,6 +6,7 @@ project('${modulename}',
6
'warning_level=1',
7
'buildtype=${buildtype}'
8
])
9
+fc = meson.get_compiler('fortran')
10
11
py = import('python').find_installation(pure: false)
12
py_dep = py.dependency()
@@ -28,6 +29,8 @@ inc_f2py = include_directories(incdir_f2py)
28
29
fortranobject_c = incdir_f2py / 'fortranobject.c'
30
31
inc_np = include_directories(incdir_numpy, incdir_f2py)
32
+# gh-25000
33
+quadmath_dep = fc.find_library('quadmath', required: false)
34
35
py.extension_module('${modulename}',
36
[
@@ -37,6 +40,7 @@ ${source_list},
37
40
include_directories: [inc_np],
38
41
dependencies : [
39
42
py_dep,
43
+ quadmath_dep,
44
${dep_list}
45
],
46
install : true)
0 commit comments