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 20b55a6 commit 930715bCopy full SHA for 930715b
pandas/_libs/meson.build
@@ -50,6 +50,15 @@ _khash_primitive_helper_dep = declare_dependency(
50
sources: _khash_primitive_helper,
51
)
52
53
+cc = meson.get_compiler('c')
54
+add_project_arguments(
55
+# https://github.com/cython/cython/issues/6870
56
+ cc.get_supported_arguments(
57
+ ['-Wno-error=unused-parameter', '-Wno-error=unused-function'],
58
+ ),
59
+ language: 'c',
60
+)
61
+
62
cdata = configuration_data()
63
if cy.version().version_compare('>=3.1.0')
64
cdata.set('freethreading_compatible', '1')
0 commit comments