-
Notifications
You must be signed in to change notification settings - Fork 469
Not a bug: some functions are deprecated on MacOS >=13 (Ventura) #7352
Copy link
Copy link
Closed
Labels
macosIssues that relate to Dune on macOSIssues that relate to Dune on macOS
Description
Just to inform you:
FSEventStreamScheduleWithRunLoop and vfork are both deprecated on OS X.
fsevents_stubs.c:203:3: warning: 'FSEventStreamScheduleWithRunLoop' is deprecated: first deprecated in macOS 13.0 - Use FSEventStreamSetDispatchQueue instead. [-Wdeprecated-declarations]
FSEventStreamScheduleWithRunLoop(t->stream, runloop->runloop,
^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.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.
spawn_stubs.c:439:33: warning: 'vfork' is deprecated: Use posix_spawn or fork [-Wdeprecated-declarations]
ret = Bool_val(v_use_vfork) ? vfork() : fork();
^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/unistd.h:604:1: note: 'vfork' has been explicitly marked deprecated here
__deprecated_msg("Use posix_spawn or fork")
^
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/sys/cdefs.h:215:48: note: expanded from macro '__deprecated_msg'
#define __deprecated_msg(_msg) __attribute__((__deprecated__(_msg)))
^
1 warning generated.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
macosIssues that relate to Dune on macOSIssues that relate to Dune on macOS