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
the cocoa video backend makes use of functions like IOPMAssertionRelease which, according to apples documentation, is provided by IOKit
If SDL_FRAMEWORK_IOKIT is never set (by disabling SDL_JOYSTICK, SDL_HAPIC and SDL_POWER) it will never be used during linking and the cocoa backend fails to link.
I'm not 100% sure if this is correct and only deducted this from CI output, I believe the right fix would be simple to set SDL_FRAMEWORK_IOKIT to 1 in the CheckCOCOA macro
The text was updated successfully, but these errors were encountered:
the cocoa video backend makes use of functions like
IOPMAssertionRelease
which, according to apples documentation, is provided by IOKitIf
SDL_FRAMEWORK_IOKIT
is never set (by disablingSDL_JOYSTICK
,SDL_HAPIC
andSDL_POWER
) it will never be used during linking and the cocoa backend fails to link.I'm not 100% sure if this is correct and only deducted this from CI output, I believe the right fix would be simple to set
SDL_FRAMEWORK_IOKIT
to 1 in theCheckCOCOA
macroThe text was updated successfully, but these errors were encountered: