You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In conda, -Wstrict-prototypes is added to CFLAGS and therefore Cython C extensions are compiled with it. These flags are recorded and when a Cython C++ extension depends on C extension, these flags are used resulting a warning.
(C flags like -std=c99 is already stripped from C++ extensions, which means there is already infrastructure to do this.)