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
after updating our AppleClang, we've noticed that efsw uses deprecated functionality on MacOS:
src/efsw/WatcherFSEvents.cpp:67:2: warning: 'FSEventStreamScheduleWithRunLoop' is deprecated: first deprecated in macOS 13.0 - Use FSEventStreamSetDispatchQueue instead. [-Wdeprecated-declarations]
FSEventStreamScheduleWithRunLoop( FSStream, FWatcher.load()->mRunLoopRef.load(),
^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX13.3.sdk/System/Library/Frameworks/CoreServices.framework/Frameworks/FSEvents.framework/Headers/FSEvents.h:1138:1: note: 'FSEventStreamScheduleWithRunLoop' has been explicitly marked deprecated here
FSEventStreamScheduleWithRunLoop(
^
1 warning generated.
The text was updated successfully, but these errors were encountered:
It seems that using the old method can cause crashes on macOS Ventura. So this is a critical change and all users should update to this new version. I'll test a few days and create a new release tag if everything is working fine.
Hello,
after updating our AppleClang, we've noticed that
efsw
uses deprecated functionality on MacOS:The text was updated successfully, but these errors were encountered: