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
{{ message }}
This repository has been archived by the owner on Jul 10, 2023. It is now read-only.
Seems a lot of assumptions are made about the widths of certain types that make many usages of the library throw errors when building for 32-bit. For example, nextEventMatchingMask_untilDate_inMode_dequeue_'s mask parameter takes an NSInteger (
Seems a lot of assumptions are made about the widths of certain types that make many usages of the library throw errors when building for 32-bit. For example,
nextEventMatchingMask_untilDate_inMode_dequeue_
'smask
parameter takes anNSInteger
(cocoa-rs/src/appkit.rs
Line 312 in bce77bf
libc::c_ulonglong
, which is not compatible in 32-bit builds.This causes, for example, https://github.com/tomaka/glutin to fail to compile under 32-bit rust-windowing/glutin#803 at least, and there may be more errors lurking around in there that this causes.
The text was updated successfully, but these errors were encountered: