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 setup.py, has_function is called for timer_create, to detect whether linking with -lrt is needed. This check does not work because has_function is fundamentally broken, see pypa/setuptools#3648. In this case, failure just leads to overlinking with -lrt, which has no effect on glibc 2.34+ anyway, but it still makes sense to migrate off this broken and unsupported has_function interface.
Code to reproduce bug
No response
Traceback, if applicable
No response
More info
No response
The text was updated successfully, but these errors were encountered:
What pyzmq version?
24.0.0
What libzmq version?
24.0.0 (I believe)
Python version (and how it was installed)
3.11, Fedora rawhide
OS
Fedora rawhide
What happened?
In
setup.py
,has_function
is called fortimer_create
, to detect whether linking with-lrt
is needed. This check does not work becausehas_function
is fundamentally broken, see pypa/setuptools#3648. In this case, failure just leads to overlinking with-lrt
, which has no effect on glibc 2.34+ anyway, but it still makes sense to migrate off this broken and unsupportedhas_function
interface.Code to reproduce bug
No response
Traceback, if applicable
No response
More info
No response
The text was updated successfully, but these errors were encountered: