File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,8 @@ libs_sources = {
86
86
},
87
87
' lib' : {
88
88
' sources' : [' lib.pyx' , ' src/parser/tokenizer.c' ],
89
- ' c_args' : [' -Wno-unused-function' ], # cython issue 6603
89
+ # cython issue 6603
90
+ ' c_args' : cc.get_supported_arguments([' -Wno-unused-function' ]),
90
91
},
91
92
' missing' : {' sources' : [' missing.pyx' ]},
92
93
' pandas_datetime' : {
@@ -122,7 +123,8 @@ libs_sources = {
122
123
' properties' : {' sources' : [' properties.pyx' ]},
123
124
' reshape' : {
124
125
' sources' : [' reshape.pyx' ],
125
- ' c_args' : [' -Wno-unused-function' ], # cython issue 6603
126
+ # cython issue 6603
127
+ ' c_args' : cc.get_supported_arguments([' -Wno-unused-function' ]),
126
128
},
127
129
' sas' : {' sources' : [' sas.pyx' ]},
128
130
' byteswap' : {' sources' : [' byteswap.pyx' ]},
You can’t perform that action at this time.
0 commit comments