-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Open
shadowsocks/shadowsocks-rust
#312Milestone
Description
time_t
is defined as c_long
on musl:
pub type time_t = c_long; |
and
c_long
is i32
on 32-bit targets:pub type c_long = i32; |
But the
time_t
definition has been changed to 64-bit by bminor/musl@3814333, since musl 1.2.0.We will change our type to i64 on 32-bit targets as well at some point but we should announce it before changing.
cc #1846
Implementation history:
- Basic support Start update to musl v1.2.3ย #4443
- time_t changes musl: 64-bit time supportย #4463
rossmacarthur, abcfy2 and xdevs23