Trying to compile for watchOS and tvOS but keep running into the following errors related to usage of syscall
error: 'syscall' is unavailable: not available on tvOS
if (syscall(SYS_getentropy, buf, n) == 0)
^
note: 'syscall' has been explicitly marked unavailable here
int syscall(int, ...);
^
Everything's working great though for iOS 👍
Seeing in the amalgamations that there is conditional arguments for macOS and iOS only. Would it be possible to also include tvOS and watchOS?
Trying to compile for
watchOSandtvOSbut keep running into the following errors related to usage ofsyscallEverything's working great though for
iOS👍Seeing in the amalgamations that there is conditional arguments for
macOSandiOSonly. Would it be possible to also includetvOSandwatchOS?