| author | |
| committer | |
| log | 113d3dd3f0ff38d9ad870fa7b20de6fe601c6cb3 |
| tree | 1cfc5f7b9c849727cce405edcdb395dfacf24a75 |
| parent | 662303d7e74b93c0169c84dcd64b9f7da51ece3a |
According to https://apilevels.com, 88.5% of Android users are on 29+. Older API
levels require libc as of https://github.com/ziglang/zig/pull/24629, which has
confused some users. Seems reasonable to bump the default so most people won't
be confused by this.1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Target.zig+1-1| ... | @@ -482,7 +482,7 @@ pub const Os = struct { | ... | @@ -482,7 +482,7 @@ pub const Os = struct { |
| 482 | 482 | ||
| 483 | break :blk default_min; | 483 | break :blk default_min; |
| 484 | }, | 484 | }, |
| 485 | .android = 24, | 485 | .android = 29, |
| 486 | }, | 486 | }, |
| 487 | }, | 487 | }, |
| 488 | .rtems => .{ | 488 | .rtems => .{ |