| ... | @@ -89,6 +89,15 @@ const test_targets = blk: { | ... | @@ -89,6 +89,15 @@ const test_targets = blk: { |
| 89 | }, | 89 | }, |
| 90 | .link_libc = true, | 90 | .link_libc = true, |
| 91 | }, | 91 | }, |
| | 92 | // https://github.com/ziglang/zig/issues/4926 |
| | 93 | //TestTarget{ |
| | 94 | // .target = .{ |
| | 95 | // .cpu_arch = .i386, |
| | 96 | // .os_tag = .linux, |
| | 97 | // .abi = .gnu, |
| | 98 | // }, |
| | 99 | // .link_libc = true, |
| | 100 | //}, |
| 92 | | 101 | |
| 93 | TestTarget{ | 102 | TestTarget{ |
| 94 | .target = .{ | 103 | .target = .{ |
| ... | @@ -127,7 +136,7 @@ const test_targets = blk: { | ... | @@ -127,7 +136,7 @@ const test_targets = blk: { |
| 127 | }) catch unreachable, | 136 | }) catch unreachable, |
| 128 | .link_libc = true, | 137 | .link_libc = true, |
| 129 | }, | 138 | }, |
| 130 | // TODO https://github.com/ziglang/zig/issues/3287 | 139 | // https://github.com/ziglang/zig/issues/3287 |
| 131 | //TestTarget{ | 140 | //TestTarget{ |
| 132 | // .target = CrossTarget.parse(.{ | 141 | // .target = CrossTarget.parse(.{ |
| 133 | // .arch_os_abi = "arm-linux-gnueabihf", | 142 | // .arch_os_abi = "arm-linux-gnueabihf", |
| ... | @@ -151,6 +160,15 @@ const test_targets = blk: { | ... | @@ -151,6 +160,15 @@ const test_targets = blk: { |
| 151 | }, | 160 | }, |
| 152 | .link_libc = true, | 161 | .link_libc = true, |
| 153 | }, | 162 | }, |
| | 163 | // https://github.com/ziglang/zig/issues/4927 |
| | 164 | //TestTarget{ |
| | 165 | // .target = .{ |
| | 166 | // .cpu_arch = .mipsel, |
| | 167 | // .os_tag = .linux, |
| | 168 | // .abi = .gnu, |
| | 169 | // }, |
| | 170 | // .link_libc = true, |
| | 171 | //}, |
| 154 | | 172 | |
| 155 | TestTarget{ | 173 | TestTarget{ |
| 156 | .target = .{ | 174 | .target = .{ |
| ... | @@ -185,7 +203,7 @@ const test_targets = blk: { | ... | @@ -185,7 +203,7 @@ const test_targets = blk: { |
| 185 | .os_tag = .macosx, | 203 | .os_tag = .macosx, |
| 186 | .abi = .gnu, | 204 | .abi = .gnu, |
| 187 | }, | 205 | }, |
| 188 | // TODO https://github.com/ziglang/zig/issues/3295 | 206 | // https://github.com/ziglang/zig/issues/3295 |
| 189 | .disable_native = true, | 207 | .disable_native = true, |
| 190 | }, | 208 | }, |
| 191 | | 209 | |