| ... | ... | @@ -22,6 +22,7 @@ pub const Os = struct { |
| 22 | 22 | contiki, |
| 23 | 23 | fuchsia, |
| 24 | 24 | hermit, |
| 25 | managarm, |
| 25 | 26 | |
| 26 | 27 | aix, |
| 27 | 28 | haiku, |
| ... | ... | @@ -158,6 +159,8 @@ pub const Os = struct { |
| 158 | 159 | .freestanding, |
| 159 | 160 | .other, |
| 160 | 161 | |
| 162 | .managarm, |
| 163 | |
| 161 | 164 | .haiku, |
| 162 | 165 | .plan9, |
| 163 | 166 | .serenity, |
| ... | ... | @@ -388,6 +391,8 @@ pub const Os = struct { |
| 388 | 391 | .freestanding, |
| 389 | 392 | .other, |
| 390 | 393 | |
| 394 | .managarm, |
| 395 | |
| 391 | 396 | .haiku, |
| 392 | 397 | .plan9, |
| 393 | 398 | .serenity, |
| ... | ... | @@ -895,6 +900,7 @@ pub const Abi = enum { |
| 895 | 900 | .contiki, |
| 896 | 901 | .fuchsia, |
| 897 | 902 | .hermit, |
| 903 | .managarm, |
| 898 | 904 | .plan9, |
| 899 | 905 | .serenity, |
| 900 | 906 | .zos, |
| ... | ... | @@ -2094,6 +2100,7 @@ pub fn requiresLibC(target: *const Target) bool { |
| 2094 | 2100 | .netbsd, |
| 2095 | 2101 | .freestanding, |
| 2096 | 2102 | .fuchsia, |
| 2103 | .managarm, |
| 2097 | 2104 | .ps3, |
| 2098 | 2105 | .zos, |
| 2099 | 2106 | .rtems, |
| ... | ... | @@ -2206,6 +2213,7 @@ pub const DynamicLinker = struct { |
| 2206 | 2213 | |
| 2207 | 2214 | .contiki, |
| 2208 | 2215 | .hermit, |
| 2216 | .managarm, // Needs to be double-checked. |
| 2209 | 2217 | |
| 2210 | 2218 | .aix, |
| 2211 | 2219 | .plan9, |
| ... | ... | @@ -2621,6 +2629,8 @@ pub const DynamicLinker = struct { |
| 2621 | 2629 | |
| 2622 | 2630 | // TODO go over each item in this list and either move it to the above list, or |
| 2623 | 2631 | // implement the standard dynamic linker path code for it. |
| 2632 | .managarm, |
| 2633 | |
| 2624 | 2634 | .ps3, |
| 2625 | 2635 | .ps4, |
| 2626 | 2636 | .ps5, |
| ... | ... | @@ -3148,6 +3158,7 @@ pub fn cTypeBitSize(target: *const Target, c_type: CType) u16 { |
| 3148 | 3158 | |
| 3149 | 3159 | .ps3, |
| 3150 | 3160 | .contiki, |
| 3161 | .managarm, |
| 3151 | 3162 | .opengl, |
| 3152 | 3163 | => @panic("specify the C integer and float type sizes for this OS"), |
| 3153 | 3164 | } |