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
Trying to build the latest weekly snapshot release on Fedora Rawhide with python 3.12.2 I'm getting:
/home/orion/fedora/gdl/gdl-unstable-41ca272/src/pythongdl.cpp:287:61: error: ‘SigFPEHandler’ was not declared in this scope; did you mean ‘oldSigFPEHandler’?
287 | PyOS_sighandler_t oldSigFPEHandler = PyOS_setsig(SIGFPE,SigFPEHandler);
| ^~~~~~~~~~~~~
| oldSigFPEHandler
/home/orion/fedora/gdl/gdl-unstable-41ca272/src/pythongdl.cpp: In function ‘PyObject* GDL_script(PyObject*, PyObject*, PyObject*)’:
/home/orion/fedora/gdl/gdl-unstable-41ca272/src/pythongdl.cpp:467:63: error: ‘SigFPEHandler’ was not declared in this scope; did you mean ‘oldSigFPEHandler’?
467 | PyOS_sighandler_t oldSigFPEHandler = PyOS_setsig(SIGFPE,SigFPEHandler);
| ^~~~~~~~~~~~~
| oldSigFPEHandler
The text was updated successfully, but these errors were encountered:
@opoplawski thanks, strange that this was not checked by our GH builds. SigFPEHandler was removed recently in favor of another method. Probably harmless to remove any reference to it in the pythongdl.cpp code.
Trying to build the latest weekly snapshot release on Fedora Rawhide with python 3.12.2 I'm getting:
The text was updated successfully, but these errors were encountered: