| author | |
| committer | |
| log | e211dce6fc7fecfea69acf548e751677879088b5 |
| tree | 8aa454517dbf56800d598485b59fdd0f29c6268c |
| parent | 4d4a023042f7a60fe0cac618df1d7e98cbb322a4 |
| signature |
It has not seen development in 6 years. RIP.
* https://github.com/Stichting-MINIX-Research-Foundation/minix/commits/master
* https://groups.google.com/g/minix3/c/nUG1NwxXXkg4 files changed, 2 insertions(+), 12 deletions(-)
lib/compiler/aro/aro/target.zig-1| ... | ... | @@ -626,7 +626,6 @@ pub fn toLLVMTriple(target: std.Target, buf: []u8) []const u8 { |
| 626 | 626 | .windows => "windows", |
| 627 | 627 | .zos => "zos", |
| 628 | 628 | .haiku => "haiku", |
| 629 | .minix => "minix", | |
| 630 | 629 | .rtems => "rtems", |
| 631 | 630 | .aix => "aix", |
| 632 | 631 | .cuda => "cuda", |
lib/std/Target.zig-7| ... | ... | @@ -29,7 +29,6 @@ pub const Os = struct { |
| 29 | 29 | hurd, |
| 30 | 30 | linux, |
| 31 | 31 | liteos, |
| 32 | minix, | |
| 33 | 32 | plan9, |
| 34 | 33 | rtems, |
| 35 | 34 | serenity, |
| ... | ... | @@ -151,7 +150,6 @@ pub const Os = struct { |
| 151 | 150 | .ps3, |
| 152 | 151 | .zos, |
| 153 | 152 | .haiku, |
| 154 | .minix, | |
| 155 | 153 | .rtems, |
| 156 | 154 | .aix, |
| 157 | 155 | .cuda, |
| ... | ... | @@ -382,7 +380,6 @@ pub const Os = struct { |
| 382 | 380 | .ps3, |
| 383 | 381 | .zos, |
| 384 | 382 | .haiku, |
| 385 | .minix, | |
| 386 | 383 | .rtems, |
| 387 | 384 | .aix, |
| 388 | 385 | .cuda, |
| ... | ... | @@ -580,7 +577,6 @@ pub const Os = struct { |
| 580 | 577 | .fuchsia, |
| 581 | 578 | .ps3, |
| 582 | 579 | .zos, |
| 583 | .minix, | |
| 584 | 580 | .rtems, |
| 585 | 581 | .aix, |
| 586 | 582 | .cuda, |
| ... | ... | @@ -685,7 +681,6 @@ pub const Abi = enum { |
| 685 | 681 | .dragonfly, |
| 686 | 682 | .ps3, |
| 687 | 683 | .zos, |
| 688 | .minix, | |
| 689 | 684 | .rtems, |
| 690 | 685 | .aix, |
| 691 | 686 | .cuda, |
| ... | ... | @@ -1843,7 +1838,6 @@ pub const DynamicLinker = struct { |
| 1843 | 1838 | .fuchsia, |
| 1844 | 1839 | .ps3, |
| 1845 | 1840 | .zos, |
| 1846 | .minix, | |
| 1847 | 1841 | .rtems, |
| 1848 | 1842 | .aix, |
| 1849 | 1843 | .cuda, |
| ... | ... | @@ -2144,7 +2138,6 @@ pub fn c_type_bit_size(target: Target, c_type: CType) u16 { |
| 2144 | 2138 | .illumos, |
| 2145 | 2139 | .haiku, |
| 2146 | 2140 | .fuchsia, |
| 2147 | .minix, | |
| 2148 | 2141 | .serenity, |
| 2149 | 2142 | => switch (target.cpu.arch) { |
| 2150 | 2143 | .msp430 => switch (c_type) { |
lib/std/c.zig+2-2| ... | ... | @@ -6619,7 +6619,7 @@ pub const Stat = switch (native_os) { |
| 6619 | 6619 | }; |
| 6620 | 6620 | |
| 6621 | 6621 | pub const pthread_mutex_t = switch (native_os) { |
| 6622 | .linux, .minix => extern struct { | |
| 6622 | .linux => extern struct { | |
| 6623 | 6623 | data: [data_len]u8 align(@alignOf(usize)) = [_]u8{0} ** data_len, |
| 6624 | 6624 | |
| 6625 | 6625 | const data_len = switch (native_abi) { |
| ... | ... | @@ -6716,7 +6716,7 @@ pub const pthread_cond_t = switch (native_os) { |
| 6716 | 6716 | magic: u16 = 0x4356, |
| 6717 | 6717 | data: u64 = 0, |
| 6718 | 6718 | }, |
| 6719 | .fuchsia, .minix, .emscripten => extern struct { | |
| 6719 | .fuchsia, .emscripten => extern struct { | |
| 6720 | 6720 | data: [48]u8 align(@alignOf(usize)) = [_]u8{0} ** 48, |
| 6721 | 6721 | }, |
| 6722 | 6722 | else => void, |
src/codegen/llvm.zig-2| ... | ... | @@ -142,7 +142,6 @@ pub fn targetTriple(allocator: Allocator, target: std.Target) ![]const u8 { |
| 142 | 142 | |
| 143 | 143 | .opengl, |
| 144 | 144 | .plan9, |
| 145 | .minix, | |
| 146 | 145 | .contiki, |
| 147 | 146 | .other, |
| 148 | 147 | => "unknown", |
| ... | ... | @@ -212,7 +211,6 @@ pub fn targetOs(os_tag: std.Target.Os.Tag) llvm.OSType { |
| 212 | 211 | .opencl, |
| 213 | 212 | .opengl, |
| 214 | 213 | .plan9, |
| 215 | .minix, | |
| 216 | 214 | .contiki, |
| 217 | 215 | => .UnknownOS, |
| 218 | 216 |