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
Auto merge of rust-lang#813 - ndusart:syscall-android, r=alexcrichton
SYS_* constants are of type long in Android
The SYS_* constants should be `c_long` as `syscall` expect a `c_long` as first argument and in Android headers, there is no sign that these constants should be `unsigned long`.
So the compilation targeting ARM Android fails for dependent crates using `syscall`.
0 commit comments